2022-03-14 09:53:00 +00:00
|
|
|
package com.safemobile.dispatch;
|
2022-03-10 14:31:03 +00:00
|
|
|
|
|
|
|
import android.os.Bundle;
|
2022-03-14 09:53:00 +00:00
|
|
|
import androidx.fragment.app.FragmentActivity;
|
2022-03-10 14:31:03 +00:00
|
|
|
|
|
|
|
public class MapDemo extends FragmentActivity {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.mapdemo);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|