在手机上缺少ADB安装的应用程序的启动器图标

时间:2015-03-19 12:58:35

标签: android apk

在iOS上开发多年之后,我正在开始Android开发。现在我开始发布我的第一个应用程序。我在这样的手机上安装了我的debug signed APK文件:

$ adb -s HT35HW917059 -d install app/app-***-debug.apk 

我可以使用adb启动应用程序而不会出现问题(应用程序启动):

$ adb -s HT35HW917059 shell am start -n ...

但是,我在手机上找不到应用程序图标,启动应用程序?我错过了什么?

1 个答案:

答案 0 :(得分:2)

在AndroidManifest.xml中检查您的活动是否具有正确的Intent filters

<activity android:name="MainActivity">
    <!-- This activity is the main entry, should appear in app launcher -->
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>