File tree 2 files changed +6
-9
lines changed
2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,11 @@ function App(): JSX.Element {
61
61
GetLocation . getCurrentPosition ( {
62
62
enableHighAccuracy : true ,
63
63
timeout : 30000 ,
64
+ rationale : {
65
+ title : 'Location permission' ,
66
+ message : 'The app needs the permission to request your location.' ,
67
+ buttonPositive : 'Ok' ,
68
+ } ,
64
69
} )
65
70
. then ( newLocation => {
66
71
setLoading ( false ) ;
@@ -102,8 +107,6 @@ function App(): JSX.Element {
102
107
< Button
103
108
title = "Open App Settings"
104
109
onPress = { ( ) => {
105
- // @ts -ignore
106
- // experimental
107
110
GetLocation . openAppSettings ( ) ;
108
111
} }
109
112
/>
@@ -112,8 +115,6 @@ function App(): JSX.Element {
112
115
< Button
113
116
title = "Open Gps Settings"
114
117
onPress = { ( ) => {
115
- // @ts -ignore
116
- // experimental
117
118
GetLocation . openGpsSettings ( ) ;
118
119
} }
119
120
/>
@@ -122,8 +123,6 @@ function App(): JSX.Element {
122
123
< Button
123
124
title = "Open Wifi Settings"
124
125
onPress = { ( ) => {
125
- // @ts -ignore
126
- // experimental
127
126
GetLocation . openWifiSettings ( ) ;
128
127
} }
129
128
/>
@@ -132,8 +131,6 @@ function App(): JSX.Element {
132
131
< Button
133
132
title = "Open Mobile Data Settings"
134
133
onPress = { ( ) => {
135
- // @ts -ignore
136
- // experimental
137
134
GetLocation . openCelularSettings ( ) ;
138
135
} }
139
136
/>
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-get-location" ,
3
3
"displayName" : " React-Native Get Location" ,
4
- "version" : " 2.2.1 " ,
4
+ "version" : " 3.0.0 " ,
5
5
"description" : " ⚛ Simple to use React Native library to get device location for Android and iOS." ,
6
6
"main" : " index.js" ,
7
7
"types" : " index.d.ts" ,
You can’t perform that action at this time.
0 commit comments