Я попробовал использовать этот код:
Код: Выделить всё
async getPermissions(){
try{
const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
{
title:'Locations Permission',
message:'Stripe needs access to your location',
buttonPositive:'Accept'
}
);
if(granted === PermissionsAndroid.RESULTS.GRANTED){
console.log('You can use Location')
}
else{
console.error('Permission not given')
}
}
catch{}
}
Подробнее здесь: https://stackoverflow.com/questions/783 ... act-native
Мобильная версия