- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道“Google Play Billing with AIDL”已弃用,但我正在使用的应用程序非常复杂,我不想更改应用程序的核心部分。
在游戏控制台上,我收到以下消息:-
“我们检测到您的应用使用的是旧版 Google Play Developer API。从 2019 年 12 月 1 日起,此 API 的版本 1 和 2 将不再可用。请在此日期之前更新到版本 3。”
我检查了“Google Play Billing Library”内部也使用相同的“Google Play Billing with AIDL”,所以我有点困惑,如果问题只能在更新库后才能解决。
在我的代码中,我已经在使用计费 API 的 API 版本 3。
private IInAppBillingService billingService;
Bundle buyIntentBundle = billingService.getBuyIntent(3, packageName, sku, type, developerPayload);
billingService.getSkuDetails(3, application.getPackageName(),
ITEM_TYPE_INAPP, bundle);
billingService.consumePurchase(3, application.getPackageName(), iabOrder.purchaseToken);
billingService.getPurchases(3, application.getPackageName(), ITEM_TYPE_INAPP, null);
billingService.isBillingSupported(3, application.getPackageName(),
ITEM_TYPE_INAPP);
最佳答案
Google Play Billing Library 是您的 Android 应用中使用的客户端 API。
Google Play Developer API 是用于在 Google Play 上管理购买和应用的服务器 API。
“我们检测到您的应用使用的是旧版 Google Play Developer API。从 2019 年 12 月 1 日起,此 API 的版本 1 和 2 将不再可用。请在此日期之前更新到版本 3。”提示您更新您的 Google Play Developer API,而不是您的 Android 应用中使用的 Google Play Billing Library。
https://github.com/android/play-billing-samples/commit/36459a4d015b40f8c6840f202fb1127c6ec95947是将 Google Play Developer API 更新到 v3 的示例
关于in-app-purchase - 是否有必要从 "Google Play Billing with AIDL"迁移到 "Google Play Billing Library"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57161391/
我正在使用 this solution在二进制矩阵中找到与图像边界对齐的矩形。假设现在我想找到一个不与图像边框对齐的矩形,并且我不知道它的方向;找到它的最快方法是什么? 为了示例,让我们寻找一个仅包含
else: 行在这个 Python 程序中是否正确/必要? from random import randrange for n in range(10): r = randrange(0,1
在 TDPL 7.1.5.1 中讨论了将 Widget w2 分配给 w1 并且作者指出“将 w2 逐个字段分配给 w1 会将 w2.array 分配给 w1.array——一个简单的数组边界分配,而
我是一名优秀的程序员,十分优秀!