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-07-03 11:45:31 +02:00
|
|
|
android:versionCode="19"
|
|
|
|
android:versionName="0.4.1" >
|
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"
|
2014-07-07 10:51:06 +02:00
|
|
|
android:theme="@style/ConversationsTheme" >
|
2014-03-06 00:00:16 +01:00
|
|
|
<service android:name="eu.siacs.conversations.services.XmppConnectionService" />
|
|
|
|
|
2014-07-07 10:51:06 +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-05-21 22:22:36 +02:00
|
|
|
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
|
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-05-23 16:20:49 +02:00
|
|
|
android:label="@string/title_activity_conversations"
|
2014-06-23 21:57:53 +02:00
|
|
|
android:launchMode="singleTask"
|
2014-07-07 10:51:06 +02: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>
|
2014-07-11 14:07:52 +02:00
|
|
|
<activity
|
2014-07-02 16:13:25 +02:00
|
|
|
android:name="eu.siacs.conversations.ui.StartConversation"
|
2014-07-11 14:07:52 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-07-02 16:13:25 +02:00
|
|
|
android:label="@string/title_activity_start_conversation"
|
|
|
|
android:logo="@drawable/ic_activity"
|
2014-07-11 23:44:59 +02:00
|
|
|
android:parentActivityName="eu.siacs.conversations.ui.ConversationActivity">
|
2014-07-11 14:07:52 +02: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>
|
|
|
|
</activity>
|
2014-01-24 02:04:05 +01:00
|
|
|
<activity
|
2014-02-28 18:46:01 +01:00
|
|
|
android:name="eu.siacs.conversations.ui.SettingsActivity"
|
2014-05-23 16:20:49 +02:00
|
|
|
android:label="@string/title_activity_settings"
|
2014-07-07 10:51:06 +02: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-04-01 23:16:19 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-07-07 10:51:06 +02:00
|
|
|
android:label="@string/title_activity_manage_accounts"
|
|
|
|
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-05-23 16:20:49 +02:00
|
|
|
android:label="@string/title_activity_conference_details"
|
2014-07-07 10:51:06 +02:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-03-05 15:41:14 +01:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name="eu.siacs.conversations.ui.ContactDetailsActivity"
|
2014-05-23 16:20:49 +02:00
|
|
|
android:label="@string/title_activity_contact_details"
|
2014-07-07 10:51:06 +02:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
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"
|
2014-07-07 10:51:06 +02:00
|
|
|
android:label="@string/title_activity_conversations" >
|
2014-03-13 21:45:38 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2014-07-07 10:51:06 +02:00
|
|
|
|
2014-03-13 21:45:38 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2014-07-07 10:51:06 +02:00
|
|
|
|
2014-03-13 21:45:38 +01:00
|
|
|
<data android:mimeType="text/plain" />
|
2014-06-15 12:01:46 +02:00
|
|
|
</intent-filter>
|
2014-07-07 10:51:06 +02:00
|
|
|
<intent-filter>
|
2014-06-15 12:01:46 +02:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
2014-07-07 10:51:06 +02:00
|
|
|
|
2014-06-15 12:01:46 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2014-07-07 10:51:06 +02:00
|
|
|
|
2014-06-03 14:10:18 +02:00
|
|
|
<data android:mimeType="image/*" />
|
2014-03-13 21:45:38 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-01-24 02:04:05 +01:00
|
|
|
</application>
|
|
|
|
|
2014-07-07 10:51:06 +02:00
|
|
|
</manifest>
|