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>