我无法在Android手机上看到apk

时间:2015-04-01 10:27:05

标签: android

错误告诉我,我无法使用apk,无法在手机屏幕上显示apk。

    [2015-04-01 16:53:46 - Bus] ------------------------------
    [2015-04-01 16:53:46 - Bus] Android Launch!
    [2015-04-01 16:53:46 - Bus] adb is running normally.
    [2015-04-01 16:53:46 - Bus] No Launcher activity found!
    [2015-04-01 16:53:46 - Bus] The launch will only sync the application package on the device!
    [2015-04-01 16:53:46 - Bus] Performing sync
    [2015-04-01 16:53:49 - Bus] Application already deployed. No need to reinstall.
    [2015-04-01 16:53:49 - Bus] \Bus\bin\Bus.apk installed on device
    [2015-04-01 16:53:49 - Bus] Done!

1 个答案:

答案 0 :(得分:0)

您需要添加

  <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>

例如:

<activity
        android:name="main.StartActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>