The problem with Google InApp Billing in android 5.0 (Lollipop) is "Service Intent must be explicit". If you want to solve this problem in android 5.0 Lollipop then follow the steps.
- goto "iab.util" package
- Open "IabHelper.java" file
- Find the below line of code.
Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
now below the line add the given line
serviceIntent.setPackage("com.android.vending");
now it will work..


No comments:
Post a Comment