It's official, Android in-app purchase code needs an update.

Got this e-mail from Google, is this something we can fix in one of the java files or are we doomed until a code fix or sdk update happens?

Hi @Distul,

We already do this in IabHelper.java:

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

And in GooglePlayStoreHelper.java:

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

4.13 is also updating Google Play Services 5.0.89 (rev19) to 9.2.0 (rev31).

I’m happy to hear about the services update. Weird that the configurations are already implemented as Dev Console is telling me my APKs don’t have those changes. But I checked the files of the last engine version I’ve published with and everything checks out.

Thank you for the quick response.