In this section, a guide to set up development environment for FATOS SDK for Android will be introduced. The functions of the SDK are largely composed of map, search, and route planning related operations. The map function can control the map layers, settings, and operation. To use "FATOS SDK for Android", you must request an SDK key and then apply that key to the source. If you want an SDK key, please go to and request an SDK key after sign up.
Please let us know if you have any technical problems using our SDK
Contact :
Development Environment
Clone or download FATOS SDK for Android from
FATOS SDK for Android is deployed as a form of AAR (Android Archive Package). Therefore, it must be linked within your project.
Make sure to check the compatibility
FATOS SDK for Android supports Android 5.0 or above (API Level 20 or above)
For a flexible navigation feature to be used in your project, your "Application class" and "MainActivity" must be inherited from "ANaviApplication class" and "FMBaseActivity class" respectively.
@Override
public class TNaviApplication extends ANaviApplication {
private Context m_Context;
@Override
public void onCreate() {
...
}
}
public class TNaviMainActivity extends FMBaseActivity {
...
}
FATOS SDK for Android requires that Navi Engine initialize. We strongly recommend you do so at onCreate() of MainActivity that extends FMBaseActivity.