Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to handle a rejection based on new Android Store policies regarding permissions?

While I am updating an app on Play store. I am getting following error according to the new policy of Google:

I have also checked all the options that are available, but again and again, Google rejects my application.

I am new to Android.

Issue: Violation of Permissions policy

After reviewing your app, we found that it doesn’t qualify to use the requested permissions for the following reason(s):

Based on our review, we found your app’s expressed user experience did not match your declared core functionality {SMS-based financial transactions (e.g., 5 digit messages), and related activity including OTP account verification for financial transactions and fraud detection}. Please remove these permissions from your app.

This is my manifest containing permissions I have declared

This is my manifest containing permissions I have declared

like image 712
walk money Avatar asked Nov 06 '22 19:11

walk money


1 Answers

SMS permission is no more allowed to read OTP as android is going to give this feature to users out of the box. You have to register as a messaging app to get SMS and CALL_LOG permissions.

like image 185
Kshitij Saxena Avatar answered Nov 14 '22 10:11

Kshitij Saxena