google-certificate.keystore
証明書フォルダーに存在する[上記のgitリンクを参照]
ステップ1:エミュレーターでコードを実行しますが、正常に動作します[ただし、そのgoogle-certificate.keystore
場所をカスタムデバッグキーストアに配置する必要があります[Eclipseに存在する-> Windows-> Preference-> Android-> bulit]
ステップ2:場所を入力しなかった場合java.lang.reflect.InvocationTargetException
開発者ケーブルを接続してAndroidデバイスに実行すると
ステップ1に従うと Installation error: INSTALL_FAILED_INVALID_INSTALL_LOCATION
、コンソールウィンドウに表示されます
ステップ2に従うと、デバイスにインストールされますが、同じ例外が発生します
編集:
これはapkファイルとして作成する手順ですが、そのコマンドをどこに入力すればよいかわかりません
編集:Manifest.xmlを追加
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yal"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INSTALL_PACKAGES"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".InstallInBackgroundSample"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>