简体   繁体   English

从 Google Play 商店安装应用程序后显示的仅内部测试卸载按钮

[英]Internal Testing only Uninstall Button showing after Install an App from Google Play Store

I've made a game app with UE4 for google play store and I uploaded it for internal testing.我用 UE4 为 google play store 制作了一个游戏应用程序,并上传了它进行内部测试。 The first version was ok I uploaded it and the testers could download it and open but then they got an error message while opening the app about keystore obb file missing and I fixed that.第一个版本没问题,我上传了它,测试人员可以下载并打开它,但随后他们在打开应用程序时收到一条关于密钥库 obb 文件丢失的错误消息,我修复了它。 But now when they download the game and install it, the open button disappears and it has only uninstall option available also a message pops up saying "thank you for trying the app before it's released".但是现在当他们下载游戏并安装它时,打开按钮消失了,它只有卸载选项可用,还会弹出一条消息说“感谢您在应用程序发布之前试用它”。

So I am wondering have I done something wrong?所以我想知道我做错了什么吗? Or does the app need more time to sync with google play store, it's been 12-13 hours since I uploaded.或者该应用程序是否需要更多时间与谷歌游戏商店同步,我上传后已经 12-13 小时了。 Also, does anyone know how long you have to wait for internal testing new release update to be active?另外,有谁知道您需要等待多长时间才能使内部测试新版本更新生效? Can't find a clear answer anywhere.在任何地方都找不到明确的答案。

PS: I cleared cache but still got the same problem PS:我清除了缓存但仍然遇到同样的问题

x00678, x00678,

I've met the same problem;我遇到了同样的问题; Check out your AndroidManifest.xml.查看您的 AndroidManifest.xml。 Under the Application -> Activity section should be block <intent-filter> .在 Application -> Activity 部分下应该是 block <intent-filter> It means a kind of intent that the app receives outside.这意味着应用程序从外部接收到的一种意图。 So, it should be like that:所以,它应该是这样的:

<intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>

If you have additional lines inside of this block, just put it to another if you are not 100% sure these lines should be in the same block with main action - launcher.如果你在这个块中有额外的行,如果你不是 100% 确定这些行应该在与主要操作 - 启动器相同的块中,就把它放到另一个块中。 Besides I am sure that including <data android:scheme> to launcher <intent-filter> block breaks the launcher.此外,我确信将<data android:scheme>包含到启动器<intent-filter>块会破坏启动器。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM