diff options
Diffstat (limited to 'bin/AndroidManifest.xml')
-rw-r--r-- | bin/AndroidManifest.xml | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/bin/AndroidManifest.xml b/bin/AndroidManifest.xml deleted file mode 100644 index 5ca5295f..00000000 --- a/bin/AndroidManifest.xml +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="de.gultsch.chat" - android:versionCode="1" - android:versionName="1.0" > - - <uses-sdk - android:minSdkVersion="14" - android:targetSdkVersion="19" /> - - <uses-permission android:name="android.permission.READ_CONTACTS" /> - - <application - android:allowBackup="true" - android:icon="@drawable/ic_launcher" - android:label="@string/app_name" - android:theme="@android:style/Theme.Holo.Light" > - <activity - android:name="de.gultsch.chat.ui.ConversationActivity" - android:label="Secure Conversations"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - <activity - android:name="de.gultsch.chat.ui.SettingsActivity" - android:label="Settings" - android:parentActivityName="de.gultsch.chat.ui.ConversationActivity" > - </activity> - <activity - android:name="de.gultsch.chat.ui.ManageAccountActivity" - android:label="Manage Accounts" - android:parentActivityName="de.gultsch.chat.ui.ConversationActivity" > - </activity> - <activity - android:name="de.gultsch.chat.ui.NewConversationActivity" - android:label="@string/title_activity_new_conversation" - android:parentActivityName="de.gultsch.chat.ui.ConversationActivity" - android:windowSoftInputMode="stateHidden" - android:noHistory="true"> - <meta-data - android:name="android.support.PARENT_ACTIVITY" - android:value="de.gultsch.chat.ui.ConversationActivity" /> - </activity> - </application> - -</manifest> |