Play商店已拒绝READ_SMS权限 [英] Play Store Rejected READ_SMS Permission

查看:343
本文介绍了Play商店已拒绝READ_SMS权限的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从清单中删除了短信许可,但playstore不接受我的应用清单.然后Play商店也拒绝了我的应用.

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

推荐答案

发生这种情况的原因是新的android版本9.在android 9中,用户可以在应用设置中启用和禁用特定权限.为此,您必须处理运行时权限.

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.

您必须处理应用程序中的运行时权限,然后在Google批准后,再次在Play商店中上载apk.应用程序将再次上线.

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

在Play商店中上传APK时,您必须向Google给出正确的答案,为什么您要在应用中使用特定的(SMS)权限.

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

如果您认为不需要应用中的权限,则意味着删除清单中的权限并更新应用版本并上传Play商店.在Google评论应用上线之后.

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.

添加清单

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

这篇关于Play商店已拒绝READ_SMS权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆