Android Marshmallow Callback when user revokes permissions from settings ?

后端 未结 1 649
遇见更好的自我
遇见更好的自我 2020-12-10 05:00

Is there a way to get callbacks if the user revokes permissions from the settings after having granted them?

I know we have to check for permissions before trying t

相关标签:
1条回答
  • 2020-12-10 05:43

    Is there a way to get callbacks if the user revokes permissions from the settings after having granted them?

    No, because your process gets terminated. There is nothing to call back to.

    Assuming the user gave permissions when asked and revokes them after the processing starts

    In that case, your processing ends abruptly, when your process is terminated.

    0 讨论(0)
提交回复
热议问题