gpt4 book ai didi

android - 应用程序未显示在启动器中

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:19:39 27 4
gpt4 key购买 nike

在 Android Studio 上通过运行命令安装应用程序后,应用程序正确启动,我可以在应用程序列表和帐户管理器中看到它。问题是它根本没有出现在应用程序启动器中。 (我在我正在测试的 Nexus 5 设备上安装了 Google Launcher,在 6.0.1 之前一切正常)。应用名称是“南瓜”。

Here is the manifest

这是 Pumpkin 应该适合的屏幕截图。

The launcher

最佳答案

您的 Intent-Filter 似乎有误。更改为:

<activity
android:name="com.pumpkin.activities.SplashScreenActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<data android:scheme="pumpkin.com" android:host="open" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>

关于android - 应用程序未显示在启动器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34392538/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com