Skip to content
This repository has been archived by the owner on Apr 10, 2019. It is now read-only.

Esri/geotrigger-sdk-android

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geotrigger SDK for Android

The Geotrigger Service provides real-time location tracking, geofencing, and messaging tools for developers working on location based apps.

The Geotrigger SDK provides the GeotriggerService, a wrapper around Android's native location capabilities, which handles uploading device locations to the Geotrigger API and receiving push notifications.

See the Getting Started with the Geotrigger SDK for Android guide for more information about the Geotrigger SDK.

Guides for other topics are available as part of the Geotrigger Documentation, including interacting with the GeotriggerService, working with the Geotrigger API, and configuring push notifications. Information about other platforms and the API itself are also available.

Setup

The Geotrigger Service can be included in a project by modifying the following Gradle files.

Top-level build.gradle:

allprojects {
    repositories {
        ...
        // Repository for the Esri Geotrigger SDK for Android
        maven {
            url 'https://esri.bintray.com/android'
        }
    }
}

App build.gradle:

dependencies {
    ...
    // Esri Geotrigger SDK for Android
    compile 'com.esri.android.geotrigger:geotrigger-sdk:1.2.0'
}