Sencha Touch と Sencha Cmd を使用してシンプルなモバイルアプリを構築するために行ったことを検証するのを誰かに手伝ってもらいたいです。
私はしばらくの間 Android アプリを構築しようとしてきましたが、Android 4.0 エミュレーターまたは電話で実行できず、まったく運がありません。
これは私がやったことです。
ステップ 1: 新しいアプリケーションを作成する
Sencha generate app MyTouch22 ../projects/MyTouch22
この手順により、アプリを起動するために必要なすべてのフォルダーとファイルが自動的に作成されます。また、デフォルトの Main.js (メイン ビュー) も生成されました。
手順 2: 以下に示すように、Android 4.0 (レベル 14) に準拠するようにパッケージ ファイル (packager.json) を変更します。
{
/**
* @cfg applicationName
* @required
* This is the name of your application, which is displayed on the device when the app is installed. On IOS, this should match
* the name of your application in the Apple Provisioning Portal.
*/
"applicationName":"My Touch22",
/**
* @cfg applicationId
* This is the name namespace for your application. On IOS, this should match the name of your application in the Apple Provisioning Portal.
*/
"applicationId":"com.test.mytouch22",
/**
* @cfg versionString
* @required
* This is the version of your application.
*/
"versionString":"1.0",
/**
* @cfg versionCode
* @required
* This is the integer version code of your application, or you can refer to it as a build number. Used only for Android builds.
*/
"versionCode":"1",
/**
* @cfg icon
* For iOS, please refer to their documentation about icon sizes:
* https://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html
*
* For Android, please refer to the Google Launcher icons guide:
* http://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html
* iOS uses 57, 72, 114 and 144; Android uses 36, 48 and 72; if you package for Android you can ignore iOS icons and vice verca
*/
"icon": {
"36":"resources/icons/Icon_Android36.png",
"48":"resources/icons/Icon_Android48.png",
"57":"resources/icons/Icon.png",
"72":"resources/icons/Icon~ipad.png",
"114":"resources/icons/Icon@2x.png",
"144":"resources/icons/Icon~ipad@2x.png"
},
/**
* @cfg inputPath
* @required
* This is location of your Sencha Touch 2 application, relative to this configuration file.
*/
"inputPath":"./",
/**
* @cfg outputPath
* @required
* This is where the built application file with be saved. Make sure that output path is not in your input path, you may get into endless recursive copying
*/
"outputPath":"c:\\Apps\\build\\",
/**
* @cfg configuration
* @required
* This is configuration for your application. `Debug` should always be used unless you are submitting your app to an online
* store - in which case `Release` should be specified.
*/
"configuration":"Debug",
/**
* @cfg platform
* @required
* This is the platform where you will be running your application. Available options are:
* - iOSSimulator
* - iOS
* - Android
* - AndroidEmulator
*/
"platform":"AndroidEmulator",
/**
* @cfg certificatePath
* This is the location of your certificate.
* This is required when you are developing for Android or you are developing on Windows.
*/
"certificatePath": "C:\\Sencha Architect\\keystore\\test-mytouch22.keystore",
/**
* @cfg sdkPath
* This is the path to the Android SDK, if you are developing an Android application.
*/
"sdkPath": "C:\\Android Development\\adt-bundle-windows-x86_64-20130219\\sdk",
/**
* @cfg androidAPILevel
* This is android API level, the version of Android SDK to use, you can read more about it here: http://developer.android.com/guide/appendix/api-levels.html.
* Be sure to install corresponding platform API in android SDK manager (android_sdk/tools/android)
*/
"androidAPILevel":"14",
/**
* @cfg {Array[String]} permissions
* Array of permissions that is used by an application (Android only)
* Full list of permissions for Android application can be found here: http://developer.android.com/reference/android/Manifest.permission.html#ACCESS_CHECKIN_PROPERTIES
*/
"permissions":[
"INTERNET"
],
/**
* @cfg {Array[String]} orientations
* @required
* This is orientations that this application can run.
*/
"orientations": [
"portrait",
"landscapeLeft",
"landscapeRight",
"portraitUpsideDown"
]
}
ステップ 3: アプリを APK ファイルにビルドする
sencha app package build packager_android.json
ステップ 4: Android 4.0 エミュレーターを実行する
android -avd Android_4_Phone
ステップ 5: APK ファイルをエミュレーターにインストールする
adb install MyTouch22.apk
上記の手順に従うと、ロード画面でスタックします。Android 3.0 (レベル 11) のプロセス全体を再実行し、Android エミュレーターを使用すると、ファイルが動作します。しかし、動作中のバージョンの APK ファイル (Android 3.0) を Android 4.0 エミュレーターにデプロイすると、読み込みページで同じ問題が発生しました。
私が使用しているツールは、Sencha Touch 2.2 と Sencha Cmd 3.1.1.274 です。
ドキュメント/ソース: