gpt4 book ai didi

android - 启用许可证测试后的应用内购买错误 [DF-BA-AH-01]

转载 作者:太空狗 更新时间:2023-10-29 14:38:43 26 4
gpt4 key购买 nike

我正在尝试实现应用程序内购买,而且似乎运行良好。当我尝试购买商品时,会出现带有价格的对话框。但是,当我将我的电子邮件帐户(或与开发者帐户没有任何关系的另一封电子邮件)放入“许可测试”列表中进行测试购买时,使用我的 Gmail 帐户登录后对话框显示此错误:

Testing purchase error

我已经阅读了很多帖子,但我不知道会发生什么...

我正在使用计费客户端库:

 compile 'com.android.billingclient:billing:1.1'

这是部分代码:

private void initBilling(){
mBillingClient = BillingClient.newBuilder(this).setListener(this).build();
mBillingClient.startConnection(new BillingClientStateListener() {
@Override
public void onBillingSetupFinished(@BillingClient.BillingResponse int billingResponseCode) {
if (billingResponseCode == BillingClient.BillingResponse.OK) {
BillingFlowParams flowParams = BillingFlowParams.newBuilder()
.setSku(CORRECT_SKU)
.setType(BillingClient.SkuType.SUBS)
.build();
int responseCode = mBillingClient.launchBillingFlow(NameOfActivity.this, flowParams);
}
}
@Override
public void onBillingServiceDisconnected() {
// Try to restart the connection on the next request to
// Google Play by calling the startConnection() method.
}
});
}

有什么帮助吗?

最佳答案

您是否将在您的应用内产品中创建的 Sku 在您的应用内产品订阅中设置为有效?我目前正在研究它。所以,如果您简要地解释一下您的问题,我可以为您提供帮助。

关于android - 启用许可证测试后的应用内购买错误 [DF-BA-AH-01],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51730416/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com