Cordova
コードワでプラットフォーム固有のwwwフォルダをカスタマイズする方法
サーチ…
プラットフォームに固有のcss / jsを作成する(android / ios)
たとえば、プラットフォーム固有のcss / jsファイルを作成したいとしましょう。そのためには、コードフォルダのルートフォルダにマージフォルダを作成する必要があります。マージでは、各プラットフォーム(android / ios ..)のディレクトリを作成します。特定のプラットフォームフォルダにcss / jsフォルダを作成し、プラットフォームフォルダに固有のcss / jsファイルを作成します。 コードオーバービルドコマンドを実行すると、各プラットフォームに対応するすべてのjs / cssファイルが、尊重されたプラットフォームフォルダに配置されます
注意:ルートwww / index.htmlには、同じcss / jが定義されていることを確認してください。そのためには、マージフォルダ内の各プラットフォームに対応する同じファイル名があることを確認してください。
//let say you are in CordovaMergesExample folder cd CordovaMergesExample //create test folder with com.test id and TestApp as name cordova create test com.test TestApp //add platform android and ios cordova platform add android ios ---------- //create merges/android/css/override.css and merges/ios/css/override.css ---------- //In root www/index.html add this stylesheet <link rel="stylesheet" type="text/css" href="css/override.css" /> ---------- cordova build ---> cordova build engine automatically identify the platform in merges folder and add files in respective folders. Check platforms/android/assets/www/css and platforms/ios/www/css
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow