简体   繁体   中英

Android IAP get error this version of the application is not configured for billing through google play check the help center

I started with billing library 3.0

  • An aab file with BILLING permission has been published on internal/alpha test

  • I added my email for close test

  • IAP products are published and their status set to active

  • From android studio my debug config has sign the same android keystore with release aab on google play

  • Version code and version name same version on internal/alpha test After that i run debug app from android studio And get error: this version of the application is not configured for billing through google play check the help center

    Anybody have solutions?

我已经通过将我的邮件添加到许可证测试中解决了这个问题

my project is very old,It build base on ant tools I found ant tools do not merge the AndroidManifest.xml So I fix this problem by add:

    <meta-data
        android:name="com.google.android.play.billingclient.version"
        android:value="4.0.0" />

    <activity
        android:name="com.android.billingclient.api.ProxyBillingActivity"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:exported="false"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM