"We've detected this app uses an unsupported version of Play billing" 适用于 Xamarin Forms Android 应用程序
"We've detected this app uses an unsupported version of Play billing" for Xamarin Forms Android App
尝试发布我的 Xamarin Forms 应用程序时,我从 Google Play 控制台
收到以下错误
We've detected this app uses an unsupported version of Play billing. Please upgrade to Billing Library version 3 or newer to publish this app.
我不使用任何计费库。我试过更新所有 nuget 依赖项,但没有成功。如何修复此错误以便我可以发布我的应用程序?
显然我在清单中设置了 BILLING
权限。删除这些解决了问题。
您可以通过右键单击项目 --> 属性 --> Android 清单 --> 在“必需的权限”下搜索 BILLING
并取消选中它
或者,打开 AndroidManifest.xml
并删除行
<uses-permission android:name="com.android.vending.BILLING" />
尝试发布我的 Xamarin Forms 应用程序时,我从 Google Play 控制台
收到以下错误We've detected this app uses an unsupported version of Play billing. Please upgrade to Billing Library version 3 or newer to publish this app.
我不使用任何计费库。我试过更新所有 nuget 依赖项,但没有成功。如何修复此错误以便我可以发布我的应用程序?
显然我在清单中设置了 BILLING
权限。删除这些解决了问题。
您可以通过右键单击项目 --> 属性 --> Android 清单 --> 在“必需的权限”下搜索 BILLING
并取消选中它
或者,打开 AndroidManifest.xml
并删除行
<uses-permission android:name="com.android.vending.BILLING" />