无法在我的真实设备上安装android apk

时间:2013-11-13 03:16:25

标签: android adt android-install-apk

将我开发的应用程序安装到我的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>

它不会工作!我能做什么?请帮助我坚持这几天。

1 个答案:

答案 0 :(得分:0)

确保在应用程序管理器设置中检查来自未知来源的安装,如果它没有帮助尝试以下操作:

  1. 确保您已安装Google USB驱动程序/ OEM驱动程序
  2. 确保在您的设备上检查USB调试
  3. 确保手机上有足够的空间
  4. 尝试更改最小sdk版本(它对我有用)