I have been sent the below notification via email 3 times now. Each time I have appealed it with the privacy team. The 3rd is being processed now, the other 2 were overturned within 4 days.
The email reads:
APK REQUIRES VALID PRIVACY POLICY
Your app is uploading users Primary Account information to https://api-recipe.stashcook.com without posting a privacy policy in both the designated field in the Play Developer Console and from within the Play distributed app itself.
Note:
- the only primary account information I can find that is being sent to
https://api-recipe.stashcook.com
is the device id. Authentication and profile data is sent to a different API. - the privacy policy URL is in the correct field on the Play Console
The app is made with Flutter. The buttons are created with the following code. I even added the semanticsLabel
in case it is a bot that is removing the app, I thought it might help it "find" the buttons.
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,
),
);
}
I have contacted the Play Store support team and they gave me an automated response, even after pleading with the support engineer for some information specific to my issue.
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 detail or a better answer to your question. In our previous email, I made sure to include all the information available to me.
You should be able to find more about your issue here: User Data and Mobile Unwanted Software policy pages.
Thanks for your understanding.
Does anyone have any suggestions?