Reputation: 196
Google Play security policy requires that:
Apps must be actively registered as the default SMS handler before prompting users to accept any of READ_SMS, WRITE_SMS, SEND_SMS, RECEIVE_SMS permissions and must immediately stop the use of the permission when it's no longer the default handler.
I know how to register as default SMS handler and request the permissions at runtime, but how do I remove those permissions myself when my app is no longer the default SMS handler?
Upvotes: 1
Views: 121
Reputation: 1007339
You cannot remove permissions yourself, or even really ask the user to remove permissions.
My interpretation of that requirement is that you stop using APIs that are tied to those permissions.
Upvotes: 1