Create Flights, Send Telemetry Data, Get Real-time Traffic Alerts.
https://dashboard.airmap.io/developer
https://developers.airmap.com/v2.1/docs/getting-started-with-airmap
Start by adding the Android SDK to your project:
implementation 'com.airmap.airmapsdk:airmapsdk:3.0.0'
to the dependencies section of your module level build.gradle
file
manifestPlaceholders = ['appAuthRedirectScheme': applicationId]
to the defaultConfig section of your module level build.gradle
file
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);
v4 of the SDK is available in beta. This updated version of the SDK utilizes AndroidX and Mapbox 8. There are breaking changes from v3 of the SDK.
implementation 'com.airmap.airmapsdk:airmapsdk:4.0.0-beta.3'
See MIGRATION GUIDE for details.
Visit https://developers.airmap.com/ for the full documentation
See LICENSE for details.