swrap
swrap

Reputation: 324

Android BroadcastRecevier for App Permissions

How would you create a broadcast receiver for when there is a change in your app's permissions?

Upvotes: 0

Views: 70

Answers (1)

Harsh Pandey
Harsh Pandey

Reputation: 831

You cannot create a BroadcastReceiver for App permissions since there is no broadcast. As soon as there is a permission change, the app is restarted.

EDIT: You can check for permissions yourselves by following this.

Upvotes: 1

Related Questions