I have installed awesome project from react native cli and run it in android build. It works fine.
When I added, below dangerous permission
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
in my android manifest.xml and run the project it is auto granted on app install.
I check app info and it is granted by default.
Note:
- Min Version : 23
- Target and Compile Version : 29
- React Native Version: 0.64.0
So when I check permission programmatically it is always granted. It should not.
from RN website : (https://reactnative.dev/docs/permissionsandroid)