即使在执行了正确的操作和类别后,也找不到启动器活动

时间:2014-05-25 16:46:52

标签: android android-manifest

我已经在堆栈溢出上跟踪了几个线程但是仍然显示错误:

  

未找到Launcher活动!

     

启动只会同步设备上的应用程序包!

这是我的android清单:

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

<uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name="transapps.android_bluetooth_host.BluetoothHost"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.inent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>


</manifest>

1 个答案:

答案 0 :(得分:0)

这只是一个错字。您的意图过滤器类别显示“android.inent”,它与启动器预期的类别名称不匹配。