更正 Android 应用内购买的权限

Correct permissions for Android in-app puchases

尝试在 Google Play 控制台中创建订阅时,我收到一条消息 To add in-app products, you need to add the BILLING permission to your APK,我相信我已经完成了。

我已将以下内容添加到我的config.xml:

<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android">
  <uses-permission android:name="com.android.vending.BILLING" />
</edit-config>

而且我已经安装了in-app-purchase-2插件(https://ionicframework.com/docs/native/in-app-purchase-2) and added the billing key as mentioned here: https://github.com/j3k0/cordova-plugin-purchase/wiki/Setup-for-Android-Google-Play#add-android-billing-key但是google游戏机仍然报错。

当我在 App Bundle Explorer(在 Google Play 控制台)中查看上传的 APK 时,我可以看到 com.android.vending.BILLING 列在权限中(下图)。这让我相信我已经正确授予了权限。但是,列表中的其他权限没有 com.android.vending 前缀。相反,他们有 android.permission 但我还没有看到任何 cordova 文档使用 com.android.vending.

以外的任何东西

我该如何解决这个问题?

我正在使用 Ionic 5 和 cordova-android^9.1.0

我执行了以下任务,问题已自行解决:

  1. 上传了“发布”APK(不是“调试”APK)
  2. 将新 APK 发布为“封闭测试”而非“内部测试”