const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION, {
title,
message,
buttonNeutral: "Ask Me Later",
buttonNegative:"Cancel",
buttonPositive: "OK"
});
clicking buttonNegative & buttonNeutral button is expected to resolve promise immediately. instead it doesn't resolve promise and further asks for Permission from native dialog box.
Is it the expected behaviour? Not sure what are these two buttons for?
Surprisingly Official document also doesnt explain much about these two buttons.