I'm looking at the following Android Flow for react-native-permissions. RESULTS.DENIED
can be returned either in the scenario Is the permission already granted
-> NO
or Is the permission still requestable
-> YES
. In other words, it will return RESULTS.DENIED
both when the app first calls check()
and when the user clicks deny
.
Is there any way to distinguish between these two scenarios?