我有一个安卓应用程序。我创建了我的应用程序的发布版本(1.0版)。我用释放密钥签署我的APK。好的。在我的应用程序中,我有付费模块。当我尝试支付我的release应用程序版本时,我得到一个错误:
This version of the application is not configured for billing

我已经在Google Play上发布了我的应用程序(同样是1.0版)。在谷歌成功发布我的应用程序后,我下载了它。然后试着付钱。成功会得到一条付费消息。

问题是:为什么我不能在发布版本中付费?
发布于 2019-09-04 12:36:05
要在版本APK中测试订阅,请将您的电子邮件id添加到测试用户列表和许可证测试中,然后您可以测试购买流程。
Add Email to test user:
Play console> select your app > Development tools > Internal app sharing > Manage testers> add your email
Add Email to Licence Testing
Play console > Settings > Developer Account > Account Details > Licence Testing > add your email in Gmail accounts with testing access然后将你的app上传到alpha并分享测试url。
发布于 2021-04-14 15:41:01
希望你删除了com.android.vending.BILLING权限,如下所示
<uses-permission android:name="com.android.vending.BILLING" tools:node="remove"/>或者您忘记添加此权限com.android.vending.BILLING
<uses-permission android:name="com.android.vending.BILLING"/>https://stackoverflow.com/questions/57766648
复制相似问题