SDKBox Children Apps new build

When I upload my Android application I get this

We’ve detected that this app is using an old version of Google Play Billing. By November 1, 2021, all app updates must use Billing Library version 3 or newer. Update to Billing Library 3 before this date

I have to use the version uploaded here SDKBOX causes Multiple Rejections from Apple team due to IDFA? is it possible to get a new safe build that uses the new Billing lib?

Iirc there is a new version coming but I’m not sure the details of what it will include.

@yinjimmy @htlxyz

Change the version of ‘com.android.billingclient: billing’ in proj.android/app/build.gradle to 3.0.x.
Test the purchase on a real device and make sure it works fine.

Example:

  • proj.android/app/build.gradle
...
dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation project(':libcocos2dx')
    ...
}
dependencies { implementation 'com.android.billingclient:billing:3.0.3' }

the version 2.7.3.1 has upgraded to Billing Library 3

does this version still have AdSupport library linked into to the IAP SDK ?

IAP needn’t AdSupport library,

but other ad sdk may need AdSupport library.