I am using react-native-permissions to handle permissions.
As far as I know when ACCESS_BACKGROUND_LOCATION permission is requested below screen screen must be rendered.
Instead, Below screen is opening
Which is app permissions screen in settings.
This is how my Androidmanifest.xml looks like
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Can Some one help me in opening the first screen when I request for ACCESS_BACKGROUND_LOCATION.

