How can I add Mappls Map to my android application?

Using Map view you can add Mappls Map in your application. for this to work all the lifecycle methods that need to be overridden:
For more visit : mappls-android-sdk/docs/v1.0.7/Getting-Started.md at main · mappls-api/mappls-android-sdk · GitHub

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.base_layout);
   mapView = findViewById(R.id.map_view);
   mapView.onCreate(savedInstanceState);
}

@Override
protected void onStart() {
   super.onStart();
   mapView.onStart();
}

@Override
protected void onStop() {
   super.onStop();
   mapView.onStop();
}

@Override
protected void onDestroy() {
    super.onDestroy();
    mapView.onDestroy();
}

@Override
protected void onPause() {
    super.onPause();
    mapView.onPause();
}

@Override
protected void onResume() {
   super.onResume();
   mapView.onResume();
}

@Override
public void onLowMemory() {
   super.onLowMemory();
   mapView.onLowMemory();
}

@Override
protected void onSaveInstanceState(Bundle outState) {
   super.onSaveInstanceState(outState);
   mapView.onSaveInstanceState(outState);
}