aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/apps/App.java
blob: 4fda041227e3855a9ad9fd7438ca8a42732b7de9 (plain)
1
2
3
4
5
6
7
8
9
package cgeo.geocaching.apps;

import android.content.Context;

public interface App {
	public boolean isInstalled(final Context context);
	public String getName();
	int getId();
}