カテゴリー:
はじめてのAndroidプログラミング 第3版
閲覧数:319 配信日:2018-06-16 12:02
パス
▼L:\Android\phoneGapProject\app20180615\www\index.html
ディレクトリ
www
・アプリ開発は基本的にこのディレクトリを利用する
platforms
・ビルド後のアウトプットが出力されるディレクトリ
・ビルド前は空のディレクトリ
・実行時に時々書き換わる
※ビルドがどのタイミングで実行されるか不明。Adobe PhoneGap Desktopアプリ /「Hello World」では、このディレクトリ内にファイルは存在している
plugins
・アプリならではの挙動にする為のプラグインのプログラムが配置されるディレクトリ
・プラグイン導入前は空のディレクトリ
・実行時に時々書き換わる
※Adobe PhoneGap Desktopアプリ /「Hello World」では、このディレクトリ内にファイルは存在している
構成
┣platforms/
┃ ┣/browser/
┃ ┃ ┣cordova/
┃ ┃ ┣css/
┃ ┃ ┣img/
┃ ┃ ┣js/
┃ ┃ ┣platform_www/
┃ ┃ ┣res/
┃ ┃ ┣www/
┃ ┃ ┃ ┣/cordova-js-src
┃ ┃ ┃ ┣/css
┃ ┃ ┃ ┣/img
┃ ┃ ┃ ┣/js
┃ ┃ ┃ ┣/plugins
┃ ┃ ┃ ┣/res
┃ ┃ ┃ ┣/spec
┃ ┃ ┃ ┣config.xml
┃ ┃ ┃ ┣confighelper.js
┃ ┃ ┃ ┣cordova.js
┃ ┃ ┃ ┣cordova_plugins.js
┃ ┃ ┃ ┣exec.js
┃ ┃ ┃ ┣index.html
┃ ┃ ┃ ┣platform.js
┃ ┃ ┃ ┗spec.html
┃ ┃ ┃
┃ ┃ ┣browser.json
┃ ┃ ┣config.xml
┃ ┃ ┣index.html
┃ ┃ ┗manifest.webapp
┃ ┃
┃ ┗platforms.json
┃
┣plugins/
┣www/
┃ ┣/css/
┃ ┣/img/
┃ ┣/js/
┃ ┣/res/
┃ ┣/spec/
┃ ┣index.html
┃ ┗spec.html
┃
┣.bithoundrc
┗config.xml
┃ ┣/browser/
┃ ┃ ┣cordova/
┃ ┃ ┣css/
┃ ┃ ┣img/
┃ ┃ ┣js/
┃ ┃ ┣platform_www/
┃ ┃ ┣res/
┃ ┃ ┣www/
┃ ┃ ┃ ┣/cordova-js-src
┃ ┃ ┃ ┣/css
┃ ┃ ┃ ┣/img
┃ ┃ ┃ ┣/js
┃ ┃ ┃ ┣/plugins
┃ ┃ ┃ ┣/res
┃ ┃ ┃ ┣/spec
┃ ┃ ┃ ┣config.xml
┃ ┃ ┃ ┣confighelper.js
┃ ┃ ┃ ┣cordova.js
┃ ┃ ┃ ┣cordova_plugins.js
┃ ┃ ┃ ┣exec.js
┃ ┃ ┃ ┣index.html
┃ ┃ ┃ ┣platform.js
┃ ┃ ┃ ┗spec.html
┃ ┃ ┃
┃ ┃ ┣browser.json
┃ ┃ ┣config.xml
┃ ┃ ┣index.html
┃ ┃ ┗manifest.webapp
┃ ┃
┃ ┗platforms.json
┃
┣plugins/
┣www/
┃ ┣/css/
┃ ┣/img/
┃ ┣/js/
┃ ┣/res/
┃ ┣/spec/
┃ ┣index.html
┃ ┗spec.html
┃
┣.bithoundrc
┗config.xml
・PhoneGapで最速アプリ開発(iOS/Android両対応)