aboutsummaryrefslogtreecommitdiffstats
path: root/bin/AndroidManifest.xml
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-01-24 11:00:54 +0100
committerDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-01-24 11:00:54 +0100
commit70590c2a2228d84e588c7db43c1be8581ec1cff5 (patch)
treeb51edb6a7d4f76c7f647e1bebce25a5e54e5c1be /bin/AndroidManifest.xml
parenta1786a9f78e6df128f46be5387ce4257d7e1f91e (diff)
clean up
Diffstat (limited to 'bin/AndroidManifest.xml')
-rw-r--r--bin/AndroidManifest.xml49
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>