aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/MapActivity.java
blob: 28668ca88da6e73f73049f4736c59697dfe997a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cgeo.geocaching.maps;

import android.app.Activity;
import android.os.Bundle;

/**
 * This activity provides an entry point for external intent calls, and then forwards to the currently used map activity
 * implementation.
 */
public class MapActivity extends Activity {
    @Override
    protected void onCreate(final Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        startActivity(CGeoMap.getLiveMapIntent(this));
        finish();
    }
}