【问题标题】:Removed Google Play Billing AIDL completely but google play developer console still show warning完全删除了 Google Play Billing AIDL,但 google play 开发者控制台仍然显示警告
【发布时间】:2021-10-15 09:58:13
【问题描述】:
我对 Google 结算库有疑问。
之前,按照 Google Play 的说明,
我们已从 Google Play Billing AIDL 迁移到 Google Play Billing Library 第 3 版。
但是,当我将 aab 文件上传到 Google Play 开发者控制台时,我仍然收到以下警告:
应用检测到它正在使用不受支持的
玩计费服务。要发布此应用,请升级到 Google
Play 结算库版本 3 或更高版本。
如果您知道如何确定原因或者您能猜出本案的大致原因,请给我们一些建议。
谢谢。
【问题讨论】:
标签:
android
google-play-console
google-play-billing
【解决方案1】:
更新你的依赖:
implementation ('com.android.billingclient:billing:4.0.0')
如果错误仍然存在,请尝试在您的 AndroidManifest.xml 中添加此行
<meta-data
android:name="com.google.android.play.billingclient.version"
android:value="4.0.0" />