Hi i'm trying to request location permission, i added some custom message but app not showing custom message, it is always showing default message
``` const requestLocationPermission = async () => {
try {
const granted = await request(
Platform.select({
android: PERMISSIONS.ANDROID.ACCESS_FINE_LOCATION,
ios: PERMISSIONS.IOS.LOCATION_WHEN_IN_USE,
}),
{
title: 'MyApp',
message:
'MyApp collects location data to enable mapping, job routing, and direction services even when the app is closed or not in use.',
buttonNeutral: 'Ask Me Later',
buttonNegative: 'Cancel',
buttonPositive: 'OK',
},
);
console.log('granted', granted);
if (granted === 'granted') {
console.log('You can use Geolocation');
return true;
} else {
console.log('You cannot use Geolocation');
return false;
}
} catch (err) {
return false;
}
} ; ```