Stripe-Android SDK 不符合 Google Play 商店的用户数据和移动垃圾软件政策

Stripe-Android SDK doesn’t comply with the User Data and Mobile Unwanted Software policies of Google Play Store

昨天,我的应用程序已从 Google Playstore 中删除,因为它使用的是 Stripe-Android SDK。

以下是我的应用程序从 Google Playstore 中删除的原因:

We’ve identified that your app is using Stripe SDK or library, which facilitates the transmission and collection of Phone Number and Installed Application information without meeting the prominent disclosure guidelines. Make sure to also post a privacy policy in both the designated field in the Play Developer Console and from within the Play distributed app itself. If necessary, you can consult your SDK provider(s) for further information.

我这边不收集任何类型的信息,我该如何解决这个问题?

我终于设法解决了这个问题。你要做的是:

  1. 更新 Stripe SDK
  2. 将您的应用更新上传到所有发布轨道(生产、开放、 封闭和内部),每次递增版本号。在上传 APK 文件之后和重新提交您的应用程序以供审核之前,请确保停用不合规的 APK (*).
  3. 转到发布概述页面并单击送审以提交您的更改。 (这很重要。我错过了这一点)

也许 Google 也会要求您添加隐私政策。您将必须:

  1. Post 一项隐私政策,非常准确地解释了您如何收集数据以及如何使用这些数据。 (即使您不收集任何数据)

  2. 在播放控制台页面,转到应用程序内容 -> 隐私政策,然后输入您的隐私政策 URL。

  3. 在您的应用程序中,将 link 添加到您的隐私政策中。 (我也错过了这一点)

不到 24 小时后,我的应用又可以在 Play 商店中访问了。

提示 1:如果您已完成所有这些步骤但您的应用仍处于离线状态,您可以联系 Google 政策支持团队 https://support.google.com/googleplay/android-developer/contact/emailappeals

(*) 提示 2 :您可以在此处停用不合规的捆绑包:

就我而言,

  1. 我忘了按照 Stripe SDK
  2. 中的安装说明进行操作

  1. 我在隐私政策中添加了以下条款:

"MY_APP 使用条纹支付。这需要有关您的 phone 号码和设备上安装的应用程序的信息,以确保安全和成功的支付。"

成功了 ✨