Requesting ACCESS_BACKGROUND_LOCATION is not showing any prompt

Viewed 660

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.

enter image description here

Instead, Below screen is opening

enter image description here

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.

0 Answers
Related