简体   繁体   English

Android App beta / alpha test apk未安装

[英]Android App beta/alpha test apk not installing

My company has an app published in the google play store/android marketplace. 我的公司在google play store / android marketplace上发布了一个应用程序。 One of the issues that we're fixing in the next version of the app is adding back xlargeScreen = true (it was somehow set to false in the previous version, so now the app isn't showing up on larger tablets). 我们在下一个版本的应用程序中修复的问题之一是添加回xlargeScreen = true(在以前的版本中它以某种方式设置为false,所以现在应用程序没有出现在更大的平板电脑上)。 We're trying to get the alpha/beta testing setup so we can make sure we have all our problems fixed before we push the apk to live. 我们正在努力获得alpha / beta测试设置,这样我们就可以确保在推送apk之前解决所有问题。

I've uploaded an apk to alpha and published it. 我已经上传了一个apk到alpha并发布了它。 I made a google+ community, added it to the accepted testers and sent out the link for the app. 我创建了一个谷歌+社区,将其添加到接受的测试人员并发送该应用程序的链接。 But, when we go out to the link and get set as testers nothing happens. 但是,当我们走到链接并设置为测试人员时,没有任何反应。 If I go to the google play store, it shows the date for the newest upload to the account but the 'install' button attempts to install the previous live version (which is incompatible with the test device, yay!). 如果我去谷歌游戏商店,它会显示最新上传到帐户的日期,但“安装”按钮会尝试安装以前的实时版本(与测试设备不兼容,是的!)。 Also someone else used their device and all the install did was install the old version to their device. 还有其他人使用他们的设备,所有安装都是将旧版本安装到他们的设备上。

I've considered the "wait up to 24 hours for the publish to go through" being the problem, but the first alpha was uploaded Friday at lunch and would not work at lunch today, on Monday. 我认为“等待最多24小时的发布才能解决”问题,但是第一个alpha版本是在周五的午餐时间上传的,并且在周一的午餐时间无法使用。 I moved the old apk to beta and put a new one in alpha (more bug fixes yay) at lunch today. 今天我在午餐时将旧的apk移动到测试版并在alpha中添加了一个新版本(更多bug修复yay)。 I checked all the settings and everything looks correct, but I can't see how I'm suppose to actually download the beta or the alpha at this point. 我检查了所有的设置,一切看起来都正确,但我不知道我是怎么想在这一点上实际下载beta或alpha。 And if I'm suppose to download the production version 1) How am I suppose to do that on the device that's incompatible with the production version and 2) how do I choose between the beta and the alpha version? 如果我想下载生产版本1)我想如何在与生产版本不兼容的设备上执行此操作2)我如何在beta和alpha版本之间进行选择?

Ok, so it takes about 2 hours to be published for alpha/beta and it will be availible in the google play store in place of the live app if you opt in. 好的,所以发布alpha / beta大约需要2个小时,如果您选择加入,它将在Google Play商店中代替实时应用程序。

My specific problem was the the new alpha/beta apk was still incompatible with the device. 我的具体问题是新的alpha / beta apk仍然与设备不兼容。 I wish there was some notice on the page to show that you are viewing a test version (or better yet, a way to select alpha/beta/production on the google play page after you opt-in). 我希望页面上有一些通知显示您正在查看测试版本(或者更好的是,在您选择加入后在Google Play页面上选择alpha / beta / production的方法)。

Turns out that <uses-permission> will in some cases make a device incompatible if it's missing the feature. 事实证明, <uses-permission>在某些情况下会使设备不兼容,如果它缺少该功能。 Adding <uses-feature android:name="problem feature" android:required="false" /> for the offending permissions fixed my issue. 为违规权限添加<uses-feature android:name="problem feature" android:required="false" />解决了我的问题。

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

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