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!