diff options
Diffstat (limited to 'cgeo-contacts/AndroidManifest.xml')
| -rw-r--r-- | cgeo-contacts/AndroidManifest.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/cgeo-contacts/AndroidManifest.xml b/cgeo-contacts/AndroidManifest.xml new file mode 100644 index 0000000..9c070b4 --- /dev/null +++ b/cgeo-contacts/AndroidManifest.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="cgeo.contacts" + android:versionCode="1" + android:versionName="1.0" > + + <uses-sdk + android:minSdkVersion="5" + android:targetSdkVersion="13" /> + + <uses-permission android:name="android.permission.READ_CONTACTS" /> + + <supports-screens + android:anyDensity="true" + android:largeScreens="true" + android:normalScreens="true" + android:smallScreens="true" /> + + <application + android:allowBackup="false" + android:icon="@drawable/cgeo" + android:label="@string/app_name" > + <activity + android:name=".ContactsActivity" + android:label="@string/app_name" + android:theme="@android:style/Theme.Translucent.NoTitleBar" > + <intent-filter> + <action android:name="cgeo.contacts.FIND" /> + + <category android:name="android.intent.category.DEFAULT" /> + + <data + android:host="cgeo.org" + android:scheme="find" /> + </intent-filter> + </activity> + </application> + +</manifest>
\ No newline at end of file |
