Home > Blockchain >  Ionic - Angular with Capacitor on Android : All app updates must use Billing Library version 4 or ne
Ionic - Angular with Capacitor on Android : All app updates must use Billing Library version 4 or ne

Time:10-25

Version used: "@awesome-cordova-plugins/in-app-purchase-2": "^5.46.0",

Actions on Webstorm (ionic project) :

ionic build
npx cap sync
npx cap open android

Actions on Android Studio:

  • Generate a signed bundle

Actions on google play console:

  • Create new release with the signed bundle

Warning on google play : We've detected that this app is using an old version of Google Play Billing. By November 1, 2022, all app updates must use Billing Library version 4 or newer. Update to Billing Library 4 before this date.

What I tried without success:

  • Add these two lines in the build.graddle:app and in capacitor.build.graddle and in the capacitor-cordova-android-plugins/build.graddle:

      dependencies {
          ....
          implementation "com.android.billingclient:billing:5.0.0"
      }
    

What I want: How do I update the PlayBillingLibrary from ionic and have it be taken into account with Capacitor when i sync my app on android (npx cap sync) ?

Thanks in advance

CodePudding user response:

You need to update cordova-plugin-purchase to version 11.0.0 or higher (see RELEASE_NOTES.md).

  • Related