Play Store Rejected READ_SMS Permission [closed]

我们两清 提交于 2019-12-13 10:14:05

问题


I removed sms permission from manifest but playstore not accepting my app manifest. Then also Play store Rejected my App.


回答1:


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" />


来源:https://stackoverflow.com/questions/55492598/play-store-rejected-read-sms-permission

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!