安装错误未知失败

时间:2015-05-24 07:19:54

标签: java android android-5.0-lollipop

我陷入了奇怪的问题。 我有一个在android 4.4.4上工作的项目。 昨晚我将手机升级到5.0.2。 现在,当我尝试通过它调试我的应用程序时。我收到了奇怪的错误。

控制台:

安装错误:未知失败

请查看logcat输出以获取更多详细信息。

发布已取消!

logcat的:

enter image description here

清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.gs.gssdk.sample"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="18"
        android:targetSdkVersion="19" />

    <!--
    Declare this required feature if you want to make the app available to BLE-capable
    devices only.  If you want to make your app available to devices that don't support BLE,
    you should omit this in the manifest.  Instead, determine BLE capability by using
    PackageManager.hasSystemFeature(FEATURE_BLUETOOTH_LE)
    -->
    <uses-feature
        android:name="android.hardware.bluetooth_le"
        android:required="true" />

     <uses-permission android:name="android.permission.BLUETOOTH" />
     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
     <uses-permission android:name="android.permission.CAMERA"/>
     <uses-permission android:name="android.permission.INTERNET" />
     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
     
     
     <uses-feature android:name="android.hardware.camera" />
     <uses-feature android:name="android.hardware.camera.autofocus" />
     
    
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.gs.gssdk.sample.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>
        
        <service
            android:name = "com.gs.gssdk.BluetoothLeService"
            android:enabled="true" />
    </application>

</manifest>

我研究了链接,但没有帮助。

我无法解决这个问题。

你能帮助我吗?

1 个答案:

答案 0 :(得分:0)

我的手机没有设置USB调试。我在开发人员选项中检查了该复选框,现在它的工作效果很好。 感谢。