我能';在android手机上看不到apk

我能';在android手机上看不到apk,android,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

错误显示,我无法使用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!
您需要添加

  <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>

此日志显示您的应用程序已安装在设备中,