我已经通过电子邮件向我发送了 3 次以下通知。每次我都会向隐私团队提出上诉。第3个正在处理中,另外2个在4天内被推翻。
\n电子邮件内容如下:
\n\n\nAPK 需要有效的隐私政策\xe2\x80\x8b
\n您的应用正在将用户主帐户信息上传到https://api-recipe.stashcook.com,而没有在 Play 开发者控制台的指定字段和 Play 分布式应用本身中\n发布隐私政策。
\n
笔记:
\nhttps://api-recipe.stashcook.com
是设备 ID。身份验证和配置文件数据被发送到不同的 API。该应用程序是用 Flutter 制作的。这些按钮是使用以下代码创建的。我什至添加了semanticsLabel
以防它是一个正在删除应用程序的机器人,我认为这可能有助于它“找到”按钮。
\n Widget _buildBody() {\n return ListView(\n children: [\n _buildTile("Terms", onPressed: () {\n _urlLauncher.tryLaunch("https://stashcook.com/terms-and-conditions");\n }),\n _buildTile("Privacy Policy", onPressed: () {\n _urlLauncher.tryLaunch("https://stashcook.com/privacy-policy");\n }),\n ]);\n }\n\n Widget _buildTile(\n String title, {\n void Function() onPressed,\n Widget trailing,\n }) {\n return ListTile(\n title: Text(\n title,\n semanticsLabel: …
Run Code Online (Sandbox Code Playgroud)