IabResult: Billing service unavailable on device. (response: 3:Billing Unavailable)

后端 未结 14 2581
隐瞒了意图╮
隐瞒了意图╮ 2020-12-15 04:37

I\'m trying to use In-App billing:

mIabHelper = new IabHelper(this, BILLING_KEY);
        mIabHelper.startSetup(new IabHelper.OnIabSetupFinishedListener() {
         


        
14条回答
  •  时光说笑
    2020-12-15 04:57

    IabHelper.java

    Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
    serviceIntent.setPackage("com.android.vending");
    

    It is an error if it is not possible to specify correctly the action and packageName to IInAppBillingService.aidl.

提交回复
热议问题