我正在app app中使用android anjlab。 代码工作正常。但突然发生了什么,我不知道应用程序在我们尝试订阅时崩溃。 我不知道是什么问题。我在想钥匙有问题。但我不知道我们如何检查钥匙是否有效。 我正在关注这些教程。
https://github.com/anjlab/android-inapp-billing-v3/blob/master/README.md
崩溃就在这段代码中..
@Subscribe
public void onRequestPurchaseEvent (RequestPurchaseEvent event)
{
final SkuDetails listingDetails;
if(event.purchaseID.equals(BaseConstants.YEARLY_SUBSCRIPTION))
listingDetails=bp.getPurchaseListingDetails(BaseConstants.YEARLY_SUBSCRIPTION);
else
listingDetails=bp.getPurchaseListingDetails(BaseConstants.SINGE_ISSUE);
LoggerDebug.d("aaa","event: "+event.purchaseID);
LoggerDebug.d("bbb","Billing Price: "+"560Rs");
PurchaseDialogFragment.createInstance(this,event.purchaseID,listingDetails.priceText).show(getSupportFragmentManager(),null);
}