-
Notifications
You must be signed in to change notification settings - Fork 920
Expand file tree
/
Copy pathPluginLocationService.java
More file actions
664 lines (592 loc) · 25.7 KB
/
Copy pathPluginLocationService.java
File metadata and controls
664 lines (592 loc) · 25.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
package plugin.google.maps;
import android.Manifest;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.location.Location;
import android.location.LocationManager;
import android.os.Build;
import android.os.Bundle;
import android.os.Looper;
import androidx.annotation.NonNull;
import androidx.core.content.PermissionChecker;
import android.util.Log;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationCallback;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationResult;
import com.google.android.gms.location.LocationServices;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaInterface;
import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.CordovaWebView;
import org.apache.cordova.PluginResult;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
public class PluginLocationService extends CordovaPlugin {
private Activity activity;
private final String TAG = "PluginLocationService";
private HashMap<String, Bundle> bufferForLocationDialog = new HashMap<String, Bundle>();
private final int ACTIVITY_LOCATION_DIALOG = 0x7f999900; // Invite the location dialog using Google Play Services
private final int ACTIVITY_LOCATION_PAGE = 0x7f999901; // Open the location settings page
private GoogleApiClient googleApiClient = null;
public void initialize(final CordovaInterface cordova, final CordovaWebView webView) {
super.initialize(cordova, webView);
activity = cordova.getActivity();
}
private static Location lastLocation = null;
private ArrayList<CallbackContext> regularAccuracyRequestList = new ArrayList<CallbackContext>();
private ArrayList<CallbackContext> highAccuracyRequestList = new ArrayList<CallbackContext>();
public static final Object semaphore = new Object();
public static void setLastLocation(Location location) {
// Sets the last location if the end user click on the mylocation (blue dot)
lastLocation = location;
}
@Override
public boolean execute(final String action, final JSONArray args, final CallbackContext callbackContext) throws JSONException {
cordova.getThreadPool().submit(new Runnable() {
@Override
public void run() {
try {
if ("getMyLocation".equals(action)) {
PluginLocationService.this.getMyLocation(args, callbackContext);
} else if ("hasPermission".equals(action)) {
PluginLocationService.this.hasPermission(args, callbackContext);
}
} catch (JSONException e) {
e.printStackTrace();
}
}
});
return true;
}
@SuppressWarnings("unused")
public void hasPermission(final JSONArray args, final CallbackContext callbackContext) throws JSONException {
synchronized (semaphore) {
// Check geolocation permission.
boolean locationPermission = PermissionChecker.checkSelfPermission(cordova.getActivity().getApplicationContext(), Manifest.permission.ACCESS_COARSE_LOCATION) == PermissionChecker.PERMISSION_GRANTED;
callbackContext.success(locationPermission ? 1 : 0);
}
}
@SuppressWarnings("unused")
public void getMyLocation(final JSONArray args, final CallbackContext callbackContext) throws JSONException {
synchronized (semaphore) {
LocationManager locationManager = (LocationManager) this.activity.getSystemService(Context.LOCATION_SERVICE);
List<String> providers = locationManager.getAllProviders();
int availableProviders = 0;
//if (mPluginLayout != null && mPluginLayout.isDebug) {
Log.d(TAG, "---debug at getMyLocation(available providers)--");
//}
Iterator<String> iterator = providers.iterator();
String provider;
boolean isAvailable;
while(iterator.hasNext()) {
provider = iterator.next();
if ("passive".equals(provider)) {
continue;
}
isAvailable = locationManager.isProviderEnabled(provider);
if (isAvailable) {
availableProviders++;
}
//if (mPluginLayout != null && mPluginLayout.isDebug) {
Log.d(TAG, " " + provider + " = " + (isAvailable ? "" : "not ") + "available");
//}
}
if (availableProviders == 0) {
JSONObject result = new JSONObject();
try {
result.put("status", false);
result.put("error_code", "not_available");
result.put("error_message", PluginUtil.getPgmStrings(activity,"pgm_no_location_providers"));
} catch (JSONException e) {
e.printStackTrace();
}
callbackContext.error(result);
return;
}
JSONObject params = args.getJSONObject(0);
boolean requestHighAccuracy = false;
if (params.has("enableHighAccuracy")) {
requestHighAccuracy = params.getBoolean("enableHighAccuracy");
}
if (requestHighAccuracy && !locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
JSONObject result = new JSONObject();
try {
result.put("status", false);
result.put("error_code", "not_available");
result.put("error_message", PluginUtil.getPgmStrings(activity,"pgm_no_location_service_is_disabled"));
} catch (JSONException e) {
e.printStackTrace();
}
callbackContext.error(result);
return;
}
// enableHighAccuracy = true -> PRIORITY_HIGH_ACCURACY
// enableHighAccuracy = false -> PRIORITY_BALANCED_POWER_ACCURACY
if (requestHighAccuracy) {
highAccuracyRequestList.add(callbackContext);
} else {
regularAccuracyRequestList.add(callbackContext);
}
if (googleApiClient != null && googleApiClient.isConnecting()) {
return;
}
}
// Request geolocation permission.
boolean locationPermission = PermissionChecker.checkSelfPermission(cordova.getActivity().getApplicationContext(), Manifest.permission.ACCESS_COARSE_LOCATION) == PermissionChecker.PERMISSION_GRANTED;
if (!locationPermission) {
//_saveArgs = args;
//_saveCallbackContext = callbackContext;
synchronized (semaphore) {
cordova.requestPermissions(this, callbackContext.hashCode(), new String[]{
Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION
});
try {
semaphore.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
locationPermission = PermissionChecker.checkSelfPermission(cordova.getActivity().getApplicationContext(), Manifest.permission.ACCESS_COARSE_LOCATION) == PermissionChecker.PERMISSION_GRANTED;
if (!locationPermission) {
PluginResult errorResult = new PluginResult(PluginResult.Status.ERROR, PluginUtil.getPgmStrings(activity,"pgm_location_rejected_by_user"));
synchronized (semaphore) {
for (CallbackContext callback: regularAccuracyRequestList) {
callback.sendPluginResult(errorResult);
}
for (CallbackContext callback: highAccuracyRequestList) {
callback.sendPluginResult(errorResult);
}
regularAccuracyRequestList.clear();
highAccuracyRequestList.clear();
}
return;
}
}
if (lastLocation != null && Calendar.getInstance().getTimeInMillis() - lastLocation.getTime() <= 2000) {
//---------------------------------------------------------------------
// If the user requests the location in two seconds from the last time,
// return the last result in order to save battery usage.
// (Don't request the device location too much! Save battery usage!)
//---------------------------------------------------------------------
JSONObject result;
try {
result = PluginUtil.location2Json(lastLocation);
result.put("status", true);
PluginResult successResult = new PluginResult(PluginResult.Status.OK, result);
synchronized (semaphore) {
for (CallbackContext callback: regularAccuracyRequestList) {
callback.sendPluginResult(successResult);
}
for (CallbackContext callback: highAccuracyRequestList) {
callback.sendPluginResult(successResult);
}
regularAccuracyRequestList.clear();
highAccuracyRequestList.clear();
}
} catch (JSONException e) {
e.printStackTrace();
}
return;
}
if (googleApiClient == null) {
googleApiClient = new GoogleApiClient.Builder(activity)
.addApi(LocationServices.API)
.addConnectionCallbacks(new com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks() {
@Override
public void onConnected(Bundle connectionHint) {
Log.d(TAG, "===> onConnected " + callbackContext.getCallbackId());
requestLocation();
}
@Override
public void onConnectionSuspended(int cause) {
Log.e(TAG, "===> onConnectionSuspended");
}
})
.addOnConnectionFailedListener(new com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener() {
@Override
public void onConnectionFailed(@NonNull ConnectionResult result) {
Log.e(TAG, "===> onConnectionFailed");
PluginResult errorResult = new PluginResult(PluginResult.Status.ERROR, result.toString());
synchronized (semaphore) {
for (CallbackContext callback: regularAccuracyRequestList) {
callback.sendPluginResult(errorResult);
}
for (CallbackContext callback: highAccuracyRequestList) {
callback.sendPluginResult(errorResult);
}
regularAccuracyRequestList.clear();
highAccuracyRequestList.clear();
}
googleApiClient.disconnect();
}
})
.build();
googleApiClient.connect();
} else if (googleApiClient.isConnected()) {
requestLocation();
} else {
Log.e(TAG, "===> googleApiClient.isConnected() is not connected");
googleApiClient.connect();
}
}
private void requestLocation() {
Log.d(TAG, "--->regularAccuracyRequestList.size = " + regularAccuracyRequestList.size());
if (regularAccuracyRequestList.size() > 0) {
PluginLocationService.this._requestLocationUpdate(false, false, new CallbackContext("regular-callback", webView) {
@Override
public void sendPluginResult(PluginResult pluginResult) {
synchronized (semaphore) {
for (CallbackContext callback: regularAccuracyRequestList) {
callback.sendPluginResult(pluginResult);
}
regularAccuracyRequestList.clear();
if (regularAccuracyRequestList.size() == 0 && highAccuracyRequestList.size() == 0) {
googleApiClient.disconnect();
}
}
}
});
}
Log.d(TAG, "--->highAccuracyRequestList.size = " + highAccuracyRequestList.size());
if (highAccuracyRequestList.size() > 0) {
PluginLocationService.this._requestLocationUpdate(false, true, new CallbackContext("regular-callback", webView) {
@Override
public void sendPluginResult(PluginResult pluginResult) {
synchronized (semaphore) {
for (CallbackContext callback: highAccuracyRequestList) {
callback.sendPluginResult(pluginResult);
}
highAccuracyRequestList.clear();
if (regularAccuracyRequestList.size() == 0 && highAccuracyRequestList.size() == 0) {
googleApiClient.disconnect();
}
}
}
});
}
}
// private void _checkLocationSettings() {
//
// LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder().setAlwaysShow(true);
//
// LocationRequest locationRequest;
// locationRequest = LocationRequest.create()
// .setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY);
// builder.addLocationRequest(locationRequest);
//
// if (enableHighAccuracy) {
// locationRequest = LocationRequest.create()
// .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
// builder.addLocationRequest(locationRequest);
// }
//
// PendingResult<LocationSettingsResult> locationSettingsResult =
// LocationServices.SettingsApi.checkLocationSettings(googleApiClient, builder.build());
//
// locationSettingsResult.setResultCallback(new ResultCallback<LocationSettingsResult>() {
//
// @Override
// public void onResult(@NonNull LocationSettingsResult result) {
// final Status status = result.getStatus();
// switch (status.getStatusCode()) {
// case LocationSettingsStatusCodes.SUCCESS:
// _requestLocationUpdate(false, enableHighAccuracy, callbackContext);
// break;
//
// case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
// // Location settings are not satisfied. But could be fixed by showing the user
// // a dialog.
// try {
// //Keep the callback id
// Bundle bundle = new Bundle();
// bundle.putInt("type", ACTIVITY_LOCATION_DIALOG);
// bundle.putString("callbackId", callbackContext.getCallbackId());
// bundle.putBoolean("enableHighAccuracy", enableHighAccuracy);
// int hashCode = bundle.hashCode();
//
// bufferForLocationDialog.put("bundle_" + hashCode, bundle);
// //PluginLocationService.this.sendNoResult(callbackContext);
//
// // Show the dialog by calling startResolutionForResult(),
// // and check the result in onActivityResult().
// cordova.setActivityResultCallback(PluginLocationService.this);
// status.startResolutionForResult(cordova.getActivity(), hashCode);
// } catch (IntentSender.SendIntentException e) {
// // Show the dialog that is original version of this plugin.
// _showLocationSettingsPage(enableHighAccuracy, callbackContext);
// }
// break;
//
// case LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE:
// // Location settings are not satisfied. However, we have no way to fix the
// // settings so we won't show the dialog.
//
// JSONObject jsResult = new JSONObject();
// try {
// jsResult.put("status", false);
// jsResult.put("error_code", "service_not_available");
// jsResult.put("error_message", "This app has been rejected to use Location Services.");
// } catch (JSONException e) {
// e.printStackTrace();
// }
// callbackContext.error(jsResult);
// break;
// }
// }
//
// });
// }
//
// private void _showLocationSettingsPage(final boolean enableHighAccuracy, final CallbackContext callbackContext) {
// //Ask the user to turn on the location services.
// AlertDialog.Builder builder = new AlertDialog.Builder(this.activity);
// builder.setTitle("Improve location accuracy");
// builder.setMessage("To enhance your Maps experience:\n\n" +
// " - Enable Google apps location access\n\n" +
// " - Turn on GPS and mobile network location");
// builder.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// //Keep the callback id
// Bundle bundle = new Bundle();
// bundle.putInt("type", ACTIVITY_LOCATION_PAGE);
// bundle.putString("callbackId", callbackContext.getCallbackId());
// bundle.putBoolean("enableHighAccuracy", enableHighAccuracy);
// int hashCode = bundle.hashCode();
//
// bufferForLocationDialog.put("bundle_" + hashCode, bundle);
// //PluginLocationService.this.sendNoResult(callbackContext);
//
// //Launch settings, allowing user to make a change
// cordova.setActivityResultCallback(PluginLocationService.this);
// Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
// activity.startActivityForResult(intent, hashCode);
// }
// });
// builder.setNegativeButton("Skip", new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// //No location service, no Activity
// dialog.dismiss();
//
// JSONObject result = new JSONObject();
// try {
// result.put("status", false);
// result.put("error_code", "service_denied");
// result.put("error_message", "This app has been rejected to use Location Services.");
// } catch (JSONException e) {
// e.printStackTrace();
// }
// callbackContext.error(result);
// }
// });
// builder.create().show();
// }
@SuppressWarnings("MissingPermission")
private void _requestLocationUpdate(final boolean isRetry, final boolean enableHighAccuracy, final CallbackContext callbackContext) {
Log.d(TAG, "---->_requestLocationUpdate (isRetry = " + isRetry + ")");
int priority = LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY;
if (enableHighAccuracy || "Genymotion".equals(Build.MANUFACTURER)) {
priority = LocationRequest.PRIORITY_HIGH_ACCURACY;
}
if (!isRetry) {
LocationServices.getFusedLocationProviderClient(cordova.getActivity())
.getLastLocation()
.addOnSuccessListener(new OnSuccessListener<Location>() {
@Override
public void onSuccess(Location location) {
lastLocation = location;
if (lastLocation != null && Calendar.getInstance().getTimeInMillis() - lastLocation.getTime() <= 2000) {
Log.d(TAG, "---->The last location is obtained in 2 sec.");
//---------------------------------------------------------------------
// If the user requests the location in two seconds from the last time,
// return the last result in order to save battery usage.
// (Don't request the device location too much! Save battery usage!)
//---------------------------------------------------------------------
JSONObject result;
try {
result = PluginUtil.location2Json(lastLocation);
result.put("status", true);
PluginResult successResult = new PluginResult(PluginResult.Status.OK, result);
synchronized (semaphore) {
for (CallbackContext callback : regularAccuracyRequestList) {
callback.sendPluginResult(successResult);
}
for (CallbackContext callback: highAccuracyRequestList) {
callback.sendPluginResult(successResult);
}
regularAccuracyRequestList.clear();
highAccuracyRequestList.clear();
}
} catch (JSONException e) {
e.printStackTrace();
}
googleApiClient.disconnect();
} else {
Log.d(TAG, "---->The last location is expired. Let's get the latest location...");
_requestLocationUpdate(true, enableHighAccuracy, callbackContext);
}
}
})
.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
_requestLocationUpdate(true, enableHighAccuracy, callbackContext);
}
});
return;
}
// It seems setting the values to both setFastestInterval() and setInterval() is important.
// https://akira-watson.com/android/fusedlocationproviderapi.html
LocationRequest locationRequest= LocationRequest.create()
//.setNumUpdates(2)
.setFastestInterval(5000)
.setInterval(10000)
//.setSmallestDisplacement(0)
.setPriority(priority)
.setExpirationDuration(12000)
.setMaxWaitTime(5000);
LocationServices.getFusedLocationProviderClient(cordova.getActivity()).requestLocationUpdates(locationRequest, new LocationCallback() {
@Override
public void onLocationResult(LocationResult locationResult) {
Log.d(TAG, "---->onLocationResult");
Location location = null;
if (locationResult.getLocations().size() > 0) {
location = locationResult.getLocations().get(0);
lastLocation = location;
} else if (locationResult.getLastLocation() != null) {
location = locationResult.getLastLocation();
}
Log.d(TAG, "===> location =" + location);
if (location != null) {
JSONObject result;
Log.d(TAG, "===> location =" + callbackContext.getCallbackId());
try {
result = PluginUtil.location2Json(location);
result.put("status", true);
callbackContext.success(result);
} catch (JSONException e) {
e.printStackTrace();
}
} else {
// Send back the error result
JSONObject result = new JSONObject();
try {
result.put("status", false);
result.put("error_code", "cannot_detect");
result.put("error_message", PluginUtil.getPgmStrings(activity,"pgm_can_not_get_location"));
} catch (JSONException e) {
e.printStackTrace();
}
callbackContext.error(result);
}
googleApiClient.disconnect();
}
}, Looper.myLooper());
}
private void _onActivityResultLocationPage(Bundle bundle) {
String callbackId = bundle.getString("callbackId");
CallbackContext callbackContext = new CallbackContext(callbackId, this.webView);
LocationManager locationManager = (LocationManager) this.activity.getSystemService(Context.LOCATION_SERVICE);
List<String> providers = locationManager.getAllProviders();
int availableProviders = 0;
//if (mPluginLayout != null && mPluginLayout.isDebug) {
Log.d(TAG, "---debug at getMyLocation(available providers)--");
//}
Iterator<String> iterator = providers.iterator();
String provider;
boolean isAvailable;
while(iterator.hasNext()) {
provider = iterator.next();
if ("passive".equals(provider)) {
continue;
}
isAvailable = locationManager.isProviderEnabled(provider);
if (isAvailable) {
availableProviders++;
}
//if (mPluginLayout != null && mPluginLayout.isDebug) {
Log.d(TAG, " " + provider + " = " + (isAvailable ? "" : "not ") + "available");
//}
}
if (availableProviders == 0) {
JSONObject result = new JSONObject();
try {
result.put("status", false);
result.put("error_code", "not_available");
result.put("error_message", PluginUtil.getPgmStrings(activity,"pgm_no_location_providers"));
} catch (JSONException e) {
e.printStackTrace();
}
callbackContext.error(result);
return;
}
_inviteLocationUpdateAfterActivityResult(bundle);
}
private void _inviteLocationUpdateAfterActivityResult(Bundle bundle) {
boolean enableHighAccuracy = bundle.getBoolean("enableHighAccuracy");
String callbackId = bundle.getString("callbackId");
CallbackContext callbackContext = new CallbackContext(callbackId, this.webView);
this._requestLocationUpdate(false, enableHighAccuracy, callbackContext);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (!bufferForLocationDialog.containsKey("bundle_" + requestCode)) {
Log.e(TAG, "no key");
return;
}
Bundle query = bufferForLocationDialog.get("bundle_" + requestCode);
Log.d(TAG, "====> onActivityResult (" + resultCode + ")");
switch (query.getInt("type")) {
case ACTIVITY_LOCATION_DIALOG:
// User was asked to enable the location setting.
switch (resultCode) {
case Activity.RESULT_OK:
// All required changes were successfully made
_inviteLocationUpdateAfterActivityResult(query);
break;
case Activity.RESULT_CANCELED:
// The user was asked to change settings, but chose not to
_userRefusedToUseLocationAfterActivityResult(query);
break;
default:
break;
}
break;
case ACTIVITY_LOCATION_PAGE:
_onActivityResultLocationPage(query);
break;
}
}
private void _userRefusedToUseLocationAfterActivityResult(Bundle bundle) {
String callbackId = bundle.getString("callbackId");
CallbackContext callbackContext = new CallbackContext(callbackId, this.webView);
JSONObject result = new JSONObject();
try {
result.put("status", false);
result.put("error_code", "service_denied");
result.put("error_message", PluginUtil.getPgmStrings(activity,"pgm_location_rejected_by_user"));
} catch (JSONException e) {
e.printStackTrace();
}
callbackContext.error(result);
}
public void onRequestPermissionResult(int requestCode, String[] permissions,
int[] grantResults) throws JSONException {
synchronized (semaphore) {
semaphore.notify();
}
}
}