如何查看Google Play商店应用版本

时间:2014-12-26 02:28:57

标签: android in-app-purchase in-app-billing

我正在试用Google Play中的In-App Billing V3。在下面提到的文件中给出了指导原则。我不知道如何使用isBillingSupported方法。你能指点我任何示例代码。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以在设备中查看GooglePlayStore应用的版本,如下所示:

PackageManager mPm = getPackageManager();
try{
    PackageInfo info = mPm.getPackageInfo("com.android.vending", PackageManager.GET_META_DATA);
    int versionCode = info.versionCode;
    String versionName = info.versionName;
}
catch( PackageManager.NameNotFoundException e) {
    // Play Store not installed
}

我不知道如何发送isBillingSupported请求,但我找到this example on GitHub。我认为这正是你要找的。