在多个apk上传的情况下,从Google PlayStore获取最新的应用版本

时间:2016-01-20 09:51:11

标签: java android google-play-services

我已在Playstore上为我的应用上传了多个APK,以便在所有设备上支持它。

现在的问题是,当我使用以下代码获取我的Playstore版本时,它返回"随设备而变化#34;。

String playStoreUrl =" http://play.google.com/store/apps/details?id=" + mContext.getPackageName();

            //It retrieves the latest version by scraping the content of current version from play store at runtime
            Document doc = Jsoup.connect(String.valueOf(playStoreUrl)).get();
            mAppStoreVersion = doc.getElementsByAttributeValue
                    ("itemprop","softwareVersion").first().text();

mAppStoreVersion是"随设备"而变化。有没有其他方法可以从Playstore获取最新的应用程序版本?

1 个答案:

答案 0 :(得分:0)

关于版本为“因设备而异”,您可以查看您的Google Play发布商帐户。 Google Play允许您为自己的应用发布不同的APK。每个都针对不同的设备配置。因此,每个APK都是您的应用程序的独立版本,但它们在Google Play上共享相同的应用程序列表,并且必须共享相同的程序包名称并使用相同的发布密钥进行签名。

有关详细信息,请查看官方Google documentation for Multiple APK Support