I have updated the apk of one of my app and I got the message from
Your APK requests the following permissions: android.permission.GET_ACCOUNTS . Applications that use these permissions in an APK must have a privacy policy set.
But I do not have that permission in my app, in the manifest these are the permissions I have:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
I do not understand why he tells me that, I have searched for the GET_ACCOUNTS permission throughout my app and he is not, and I have never added it. Does anyone know why I get that?