英文:
APK has a tv launcher and should be published as an app bundle
问题
我正在尝试将APK发布到Play商店,但我遇到了如下错误:
APK有一个电视启动器,应该以应用程序包的形式发布。
但该应用程序没有任何电视启动器。
英文:
I'm trying to publish apk to play store, but I'm getting such error
APK has a tv launcher and should be published as an app bundle.
But the app not haven't any tv launchers.
答案1
得分: 1
你的 Android 清单文件中是否有以下内容:
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
如果有的话,请移除它。
如果你正在使用 Unity,还应禁用 Android TV 兼容性。
英文:
Do you have a
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
in any of your Android manifests?
Remove it if you have it.
If you are using Unity you should also disable Android TV Compatibility
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论