Your app is using an incorrect implementation of in-app billing. Please see this Google Help Center article for more information.
Next Steps
- If you are using IabHelper, please start using the latest SDK.
- If you are manually invoking the in-app billing service, make sure you are calling
Intent.setPackage(“com.android.vending”)
on any intents to"com.android.vending.billing.InAppBillingService.BIND"
. - Sign in to your Developer Console and submit the updated version of your app.
- Check back after five hours - we’ll show a warning message if the app hasn’t been updated correctly
I got this mail even though I'm using following code.
Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
serviceIntent.setPackage("com.android.vending");
bindService(serviceIntent, mServiceConn,
Context.BIND_AUTO_CREATE);
what actual issue can be there? why google is giving this warning?