...
In the AndroidManifest file, you must declare ACCESS_FINE_LOCATION and ACCESS_BACKGROUND_LOCATION
|
If your app targets Android 10 (API level 29) or higher ACCESS_BACKGROUND_LOCATION is mandatory.
Ask for runtime permission when the user interacts with a feature in your application which demands location access.
|
To start geofence call (deprecated, without receiving Geofence status or errors)
|
To start geofence call (with receiving geofence status or errors)
Code Block |
---|
// Define callback for getting result when calling start geofence private final ResultCallback<String> geofenceCallback = new ResultCallback<>() { @Override public void onResult(@Nullable String result) { devLogger.d(result); if (result != null) { switch (result) { // handle different cases of a result status } } } }; // Start Geofence Appoxee.instance().startGeoFencing(geofenceCallback); |
List of all possible statuses when starting Geofence:
Code Block |
---|
String GEOFENCE_SDK_NOT_READY = "GEOFENCE_SDK_NOT_READY";
String GEOFENCE_LOCATION_PERMISSIONS_NOT_GRANTED = "GEOFENCE_LOCATION_PERMISSIONS_NOT_GRANTED";
String GEOFENCE_LOCATION_NOT_ACCURATE = "GEOFENCE_LOCATION_NOT_ACCURATE";
String GEOFENCE_LOCATION_NOT_AVAILABLE = "GEOFENCE_LOCATION_NOT_AVAILABLE";
String GEOFENCE_NO_INTERNET_CONNECTION = "GEOFENCE_NO_INTERNET_CONNECTION";
String GEOFENCE_FAILED_GETTING_REGIONS = "GEOFENCE_FAILED_GETTING_REGIONS";
String GEOFENCE_STARTED_OK = "GEOFENCE_STARTED_OK";
String GEOFENCE_STOPPED_OK="GEOFENCE_STOPPED_OK";
String GEOFENCE_GENERAL_ERROR = "GEOFENCE_GENERAL_ERROR";
String GEOFENCE_TOO_MANY_GEOFENCE_CALLS = "GEOFENCE_TOO_MANY_GEOFENCE_CALLS";
String GEOFENCE_TOO_MANY_GEOFENCES = "GEOFENCE_TOO_MANY_GEOFENCES";
String GEOFENCE_TOO_MANY_PENDING_INTENTS="GEOFENCE_TOO_MANY_PENDING_INTENTS";
String GEOFENCE_ERROR_STOPPING = "GEOFENCE_ERROR_STOPPING"; |
In the example below, you can see how to ask for permission and start geofencing:
|
To stop geofence call (deprecated, without receiving Geofence status or errors)
|
To stop geofence call (with receiving Geofence status or errors)
Code Block |
---|
Appoxee.instance().stopGeoFencing(geofenceCallback); |
Best practices to improve geofencing:
enable Wi-Fi or Wi-Fi scanning
enable Bluetooth or Bluetooth scanning
enable Mobile data
disable Airplane Mode (the phone must NOT be in Airplane Mode)
avoid using Power Saving Mode
enable Mobile data
Use code below to enable Wi-Fi scanning from code
|
Or you can use code below to redirect the user to Location Service in Settings:
|
On this page user should enable:
Wi-FI scanning,
Bluetooth scanning,
Emergency Location Service and
Google Location Accuracy
...
In the screenshots above you can see which options should be enabled when the user is redirected to Location Service in Settings.
...
To change location settings:
Open your device's Settings app.
Tap Security & Location → Location.
If you have a work profile, tap Advanced.
Then, choose the option:
Turn Location on or off: Tap Location.
Scan for nearby networks: Tap Advanced → Scanning. Turn Wi-Fi scanning and Bluetooth scanning on.
Turn emergency location service on or off: Tap Advanced → Google Emergency Location Service. Turn Emergency Location Service on.
...
You can choose your location mode based on accuracy, speed, and battery use.
Open your phone's Settings app.
Tap Security & Location → Location. If you don't see "Security & Location," tap Location.
Tap Mode. Then pick:
High accuracy: Use GPS, Wi-Fi, mobile networks, and sensors to get the most accurate location. Use Google Location Services to help estimate your phone's location faster and more accurately.
Battery saving: Use sources that use less battery, like Wi-Fi and mobile networks. Use Google Location Services to help estimate your phone's location faster and more accurately.
Device only: Use the only GPS. Don’t use Google Location Services to provide location information. This can estimate your phone's location more slowly and use more battery.
...