[Solved] Play Store Rejected READ_SMS Permission [closed]


That happen because of new android version 9.In android 9 user can enable and disable particular permission in app settings. for that you have to handle run time permission.

You have to handle runtime permission in app then upload apk again in play store once google approve it App will come again live.

while uploading apk in play store you have to give proper answer to google why you are using particular(sms) permission in the app.

If you feel no need that permission in app means remove the permission in manifest and update the app version and upload the playstore.After google review app will come live.

Add in your manifest

   <uses-permission
    android:name="android.permission.RECEIVE_SMS"
    tools:node="remove" />

0

solved Play Store Rejected READ_SMS Permission [closed]