開発したアプリを Android フォンにインストールすると、このエラーが発生しました
[2013-11-13 11:06:11 - Test] ------------------------------
[2013-11-13 11:06:11 - Test] Android Launch!
[2013-11-13 11:06:11 - Test] adb is running normally.
[2013-11-13 11:06:11 - Test] Performing com.example.test.MainActivity activity launch
[2013-11-13 11:06:13 - Test] Uploading Test.apk onto device '087A4C7CF209'
[2013-11-13 11:06:13 - Test] Installing Test.apk...
[2013-11-13 11:08:15 - Test] Failed to install Test.apk on device '087A4C7CF209!
[2013-11-13 11:08:15 - Test] (null)
[2013-11-13 11:08:15 - Test] Launch canceled!
デバッグモードがオンになっていると確信しています。キャンセルしてリセットしようとしましたが、うまくいきませんでした。デバイスは検出できるので、その点では問題ないと思います
$adb devices
List of devices attached
087A4C7CF209 device
コマンドラインからインストールすると、そこでハングアップし、成功することはありません。
$ adb install ~/workspace/Test/bin/Test.apk
3096 KB/s (255979 bytes in 0.080s)
pkg: /data/local/tmp/Test.apk
アップデート
マニフェスト ファイル:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.test.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
それはうまくいきません!! 私に何ができる?私は何日もこれにこだわっています。