2014-01-24 02:04:05 +01:00
|
|
|
<?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" />
|
2014-01-26 03:27:55 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_PROFILE"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@android:style/Theme.Holo.Light" >
|
2014-01-25 19:33:12 +01:00
|
|
|
<service android:name="de.gultsch.chat.services.XmppConnectionService"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
<activity
|
|
|
|
android:name="de.gultsch.chat.ui.ConversationActivity"
|
2014-01-24 23:58:51 +01:00
|
|
|
android:label="Secure Conversations"
|
|
|
|
android:windowSoftInputMode="stateHidden">
|
2014-01-24 02:04:05 +01:00
|
|
|
<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"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:windowSoftInputMode="stateHidden">
|
2014-01-24 02:04:05 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="de.gultsch.chat.ui.ConversationActivity" />
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|