gpt4 book ai didi

android - 播放商店 : Publishing status: Removed - APK REQUIRES VALID PRIVACY POLICY​

转载 作者:行者123 更新时间:2023-12-04 07:42:00 27 4
gpt4 key购买 nike

我已经通过电子邮件收到了以下通知 3 次。每次我都向隐私团队提出上诉。现在正在处理第3个,另外2个在4天内被覆盖。
邮件内容如下:

APK REQUIRES VALID PRIVACY POLICY​

Your app is uploading users Primary Account information to https://api-recipe.stashcook.com without posting a privacy policy inboth the designated field in the Play Developer Console and fromwithin the Play distributed app itself.


笔记:
  • 我能找到的唯一主要帐户信息正在发送到 https://api-recipe.stashcook.com是设备标识。身份验证和配置文件数据被发送到不同的 API。
  • 隐私政策网址位于 Play 管理中心的正确字段中

  • 该应用程序是用 Flutter 制作的。这些按钮是使用以下代码创建的。我什至添加了 semanticsLabel如果它是一个正在删除应用程序的机器人,我认为它可能会帮助它“找到”按钮。

    Widget _buildBody() {
    return ListView(
    children: [
    _buildTile("Terms", onPressed: () {
    _urlLauncher.tryLaunch("https://stashcook.com/terms-and-conditions");
    }),
    _buildTile("Privacy Policy", onPressed: () {
    _urlLauncher.tryLaunch("https://stashcook.com/privacy-policy");
    }),
    ]);
    }

    Widget _buildTile(
    String title, {
    void Function() onPressed,
    Widget trailing,
    }) {
    return ListTile(
    title: Text(
    title,
    semanticsLabel: "$title button",
    style: TextStyle(fontWeight: FontWeight.bold, color: Colors.black),
    ),
    onTap: onPressed,
    trailing: trailing ??
    Icon(
    StashcookIcons.arrow_right,
    color: ThemeDataDefaults.darkBlue,
    size: 18,
    ),
    );
    }


    我已经联系了 Play 商店支持团队,他们给了我一个自动回复,即使在请求支持工程师提供一些特定于我的问题的信息之后也是如此。

    Hi Roy,

    Thanks again for contacting Google Play team.

    As much as I'd like to help, I’m not able to provide any more detailor a better answer to your question. In our previous email, I madesure to include all the information available to me.

    You should be able to find more about your issue here: User Data andMobile Unwanted Software policy pages.

    Thanks for your understanding.


    有没有人有什么建议?

    最佳答案

    在向 Play 商店支持人员多次恳求之后,他们终于为我指明了正确的方向。
    问题不在于我没有在正确的位置添加隐私政策,就像来自 Play 商店的电子邮件所建议的那样。这是隐私政策没有包含明确的详细信息,通知用户他们的设备 ID 将被发送到我的应用程序外部 API。
    看起来,根据审查应用程序的人,一些审查者会认为隐私政策可以接受,而其他人则不会。因此来来回回。出现此问题时,Play 商店的审核人员似乎没有更好的错误消息可以发送给开发人员。
    一旦我编辑了隐私政策的措辞,该应用程序就会在 Play 商店中恢复,此后我没有遇到任何问题。

    关于android - 播放商店 : Publishing status: Removed - APK REQUIRES VALID PRIVACY POLICY​,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67412974/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com