blob: d46a5a4a0519a588af0f83b52ee798e781d50e43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package cgeo.contacts;
public interface IContacts {
static final String CALENDAR_ADDON_URI = "market://details?id=cgeo.contacts";
static final String INTENT = "cgeo.contacts.FIND";
static final String URI_SCHEME = "find";
static final String URI_HOST = "cgeo.org";
static final String PARAM_NAME = "name"; // user name
}
|