qkx
qkx

Reputation: 2563

Why am I getting SMS and CALL_LOG warning in Google Play console, when my app DOESNT use anything even remotely close to these permissions?

My app is just a simple calendar alarm app, and uses this permissions:

<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.READ_CALENDAR">

Yet I get this warning:

enter image description here

But I dont use any of these permissions as you can see above. Also, two more proofs:

It simply must be a bug or something, why I get this warning?

What can I do? I filled the form couple days ago, but google didnt even reply me...

EDIT: Even more weird is, displaying the warning is totally random. One day I saw warning, then I refresh page and it disappears. Then I could not see it a week, and then suddenly today I see it again. When I refresh page it always disappear, but later it shows again. Totally random.

Upvotes: 5

Views: 451

Answers (1)

Rahul Devanavar
Rahul Devanavar

Reputation: 4165

Check for any third-party library you are using they have this permission(You can check in the merged manifest).if not then don't worry about the warning.

Upvotes: 2

Related Questions