Create Flights, Send Telemetry Data, Get Realtime Traffic Alerts.
- Minimum Andorid SDK Level 18 or higher
Sign up for an AirMap Developer Account.
https://dashboard.airmap.io/developer
https://developers.airmap.com/docs/android-getting-started
Start by adding the Android SDK to your project:
- Add
compile('com.airmap.sdk:airmapsdk:1.0.9')
to your module level build.gradle
file
- Add
maven { url "https://jitpack.io" }
to your application-level build.gradle
file under the allprojects.repositories
block
- If you were previously using version
1.0.2
or older, note that there have also been some package name changes, so some classes will need to be re-imported
Simply add this line in your Application or Activity's onCreate
AirMap.init(MainActivity.this);
Visit https://developers.airmap.com/docs/android-getting-started for the full documentation
See LICENSE for details.