Question

My app supports SDK 1.6 so when I added Android billing, it started giving a syntax error on this method:

        act.startIntentSenderForResult(pendingIntent.getIntentSender(),
                                       requestCode, new Intent(),
                                       Integer.valueOf(0), Integer.valueOf(0),
                                       Integer.valueOf(0));

Which is in IabHelper.java and called inside the launchPurchaseFlow method

Does this mean I can not implement the new Android billing without stopping to support 1.6? Is there a way to get around this?

Thanks!

Was it helpful?

Solution

Per In App Billing Overview:

In-app Billing Version 3 is supported on devices running Android 2.2 or higher that have the latest version of the Google Play store installed

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top