I want to change the display name of the ios location popup: „Would like to use your current location“. Does somebody has any idea?
Asked
Active
Viewed 68 times
0
-
It should show the name of your app when it's released. – ceejayoz Oct 07 '20 at 14:35
-
I've already upload it to TestFlight but there is no change. – alus Oct 07 '20 at 14:37
1 Answers
0
Check This Post Location permission alert - Location permission alert on iPhone with Cordova
Use this plugin for Alert - **`cordova plugin add cordova-plugin-dialogs`**
function alertDismissed() {
// do something
}
navigator.notification.alert(
'Alert Message', // message
alertDismissed, // callback
'Alert Title', // title
'Done' // buttonName
);

Ramprasath Selvam
- 3,868
- 3
- 25
- 41