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"
|
2014-02-28 18:46:01 +01:00
|
|
|
package="eu.siacs.conversations"
|
2014-05-12 15:40:03 +02:00
|
|
|
android:versionCode="11"
|
|
|
|
android:versionName="0.2" >
|
2014-01-24 02:04:05 +01:00
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="14"
|
|
|
|
android:targetSdkVersion="19" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2014-03-06 00:00:16 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
2014-01-30 16:42:35 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2014-03-13 18:18:41 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2014-03-06 00:00:16 +01:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2014-03-13 18:18:41 +01:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2014-03-06 00:00:16 +01:00
|
|
|
|
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-03-06 00:00:16 +01:00
|
|
|
<service android:name="eu.siacs.conversations.services.XmppConnectionService" />
|
|
|
|
|
2014-04-21 19:51:03 +02:00
|
|
|
<provider
|
|
|
|
android:name="eu.siacs.conversations.services.ImageProvider"
|
|
|
|
android:authorities="eu.siacs.conversations.images"
|
|
|
|
android:exported="true"/>
|
|
|
|
|
2014-03-06 00:00:16 +01:00
|
|
|
<receiver android:name="eu.siacs.conversations.services.EventReceiver" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
2014-03-13 18:18:41 +01:00
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
2014-03-06 00:00:16 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
<activity
|
2014-02-28 18:46:01 +01:00
|
|
|
android:name="eu.siacs.conversations.ui.ConversationActivity"
|
2014-03-06 00:00:16 +01:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-02-28 18:46:01 +01:00
|
|
|
android:label="Conversations"
|
2014-03-06 00:00:16 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-01-24 02:04:05 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2014-03-06 00:00:16 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2014-02-28 18:46:01 +01:00
|
|
|
android:name="eu.siacs.conversations.ui.SettingsActivity"
|
2014-01-24 02:04:05 +01:00
|
|
|
android:label="Settings"
|
2014-02-28 18:46:01 +01:00
|
|
|
android:parentActivityName="eu.siacs.conversations.ui.ConversationActivity" >
|
2014-01-24 02:04:05 +01:00
|
|
|
</activity>
|
|
|
|
<activity
|
2014-02-28 18:46:01 +01:00
|
|
|
android:name="eu.siacs.conversations.ui.ManageAccountActivity"
|
2014-01-24 02:04:05 +01:00
|
|
|
android:label="Manage Accounts"
|
2014-04-01 23:16:19 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-02-28 18:46:01 +01:00
|
|
|
android:parentActivityName="eu.siacs.conversations.ui.ConversationActivity" >
|
2014-03-03 05:01:02 +01:00
|
|
|
</activity>
|
2014-03-06 00:00:16 +01:00
|
|
|
<activity
|
2014-03-05 15:41:14 +01:00
|
|
|
android:name="eu.siacs.conversations.ui.MucDetailsActivity"
|
2014-03-03 05:01:02 +01:00
|
|
|
android:label="Conference Details"
|
2014-03-06 00:00:16 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-03-05 15:41:14 +01:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name="eu.siacs.conversations.ui.ContactDetailsActivity"
|
|
|
|
android:label="Contact Details"
|
2014-03-06 00:00:16 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-01-24 02:04:05 +01:00
|
|
|
</activity>
|
|
|
|
<activity
|
2014-03-15 15:13:35 +01:00
|
|
|
android:name="eu.siacs.conversations.ui.ContactsActivity"
|
|
|
|
android:label="@string/title_activity_contacts"
|
2014-02-28 18:46:01 +01:00
|
|
|
android:parentActivityName="eu.siacs.conversations.ui.ConversationActivity"
|
2014-03-06 00:00:16 +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" />
|
2014-03-13 18:18:41 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SENDTO" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:scheme="imto" />
|
|
|
|
<data android:host="jabber" />
|
|
|
|
</intent-filter>
|
2014-01-24 02:04:05 +01:00
|
|
|
</activity>
|
2014-03-13 21:45:38 +01:00
|
|
|
<activity
|
|
|
|
android:name="eu.siacs.conversations.ui.ShareWithActivity"
|
|
|
|
android:label="Conversations"
|
|
|
|
android:theme="@android:style/Theme.Holo.Light.DialogWhenLarge"
|
|
|
|
android:icon="@drawable/ic_launcher">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-01-24 02:04:05 +01:00
|
|
|
</application>
|
|
|
|
|
2014-03-15 16:42:04 +01:00
|
|
|
</manifest>
|