diff options
author | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-01-24 02:04:05 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-01-24 02:04:05 +0100 |
commit | 35f8ab58f4b6f97f02031b056d2a5f6f993672cf (patch) | |
tree | f3b9cda64e6e08337a44588a564d5194fe8b3225 /AndroidManifest.xml |
inital commit
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml new file mode 100644 index 00000000..a2716651 --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1,48 @@ +<?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"> + <meta-data + android:name="android.support.PARENT_ACTIVITY" + android:value="de.gultsch.chat.ui.ConversationActivity" /> + </activity> + </application> + +</manifest> |