我想从普通的Android项目(从2015年开始)转到Gradle项目,所以我做了所有需要的工作。清单是相同的,并且一切似乎都可以正常工作,但是当我在商店进行更新时,我的应用程序完全消失了关闭手机,没有更多图标,而且在Playstore中,我只能选择将其卸载。
有人遇到这种问题了吗? 我什至尝试了使用活动别名来确保它具有相同的程序包名称和活动。.但似乎无法解决问题
答案 0 :(得分:0)
从启动屏幕中删除此
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="example.page.link"
android:scheme="https" />
(如果已在初始屏幕的intent-filter中使用过它)。 如果无法实现,请在启动屏幕中使用另一个意图过滤器 喜欢,
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="example.page.link"
android:scheme="https" />
</intent-filter>