Create Flights, Send Telemetry Data, Get Real-time Traffic Alerts.
- Minimum Android SDK Level 21 or higher
Sign up for an AirMap Developer Account.
https://dashboard.airmap.com/developer
https://developers.airmap.com/docs/getting-started-with-airmap
Start by adding the Android SDK to your project:
- Add
implementation 'com.airmap.airmapsdk:airmapsdk:3.0.0'
to the dependencies section of your module level build.gradle
file
- Add
manifestPlaceholders = ['appAuthRedirectScheme': applicationId]
to the defaultConfig section of your module level build.gradle
file
- Add
maven { url "https://jitpack.io" }
to your application-level build.gradle
file under the allprojects.repositories
block
Simply add this line in your Application or Activity's onCreate
AirMap.init(this);
See MIGRATION GUIDE for details.
Visit https://developers.airmap.com/ for the full documentation
See LICENSE for details.