2014-01-24 01:04:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-02-28 17:46:01 +00:00
|
|
|
package="eu.siacs.conversations"
|
2014-07-24 17:37:11 +00:00
|
|
|
android:versionCode="21"
|
|
|
|
android:versionName="0.5" >
|
2014-01-24 01:04:05 +00:00
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="14"
|
|
|
|
android:targetSdkVersion="19" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2014-03-05 23:00:16 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
2014-01-30 15:42:35 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2014-03-13 17:18:41 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2014-03-05 23:00:16 +00:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2014-03-13 17:18:41 +00:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2014-03-05 23:00:16 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2014-07-07 08:51:06 +00:00
|
|
|
android:theme="@style/ConversationsTheme" >
|
2014-03-05 23:00:16 +00:00
|
|
|
<service android:name="eu.siacs.conversations.services.XmppConnectionService" />
|
|
|
|
|
2014-07-07 08:51:06 +00:00
|
|
|
<provider
|
|
|
|
android:name="eu.siacs.conversations.services.ImageProvider"
|
|
|
|
android:authorities="eu.siacs.conversations.images"
|
|
|
|
android:exported="true" />
|
|
|
|
|
2014-03-05 23:00:16 +00:00
|
|
|
<receiver android:name="eu.siacs.conversations.services.EventReceiver" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
2014-03-13 17:18:41 +00:00
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
2014-05-21 20:22:36 +00:00
|
|
|
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
|
2014-03-05 23:00:16 +00:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
<activity
|
2014-02-28 17:46:01 +00:00
|
|
|
android:name="eu.siacs.conversations.ui.ConversationActivity"
|
2014-03-05 23:00:16 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-05-23 14:20:49 +00:00
|
|
|
android:label="@string/title_activity_conversations"
|
2014-06-23 19:57:53 +00:00
|
|
|
android:launchMode="singleTask"
|
2014-07-07 08:51:06 +00:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-01-24 01:04:05 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2014-03-05 23:00:16 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-07-11 12:07:52 +00:00
|
|
|
<activity
|
2014-07-16 22:03:37 +00:00
|
|
|
android:name="eu.siacs.conversations.ui.StartConversationActivity"
|
2014-07-11 12:07:52 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-07-02 14:13:25 +00:00
|
|
|
android:label="@string/title_activity_start_conversation"
|
|
|
|
android:logo="@drawable/ic_activity"
|
2014-07-16 22:03:37 +00:00
|
|
|
android:parentActivityName="eu.siacs.conversations.ui.ConversationActivity" >
|
2014-07-11 12:07:52 +00: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 01:04:05 +00:00
|
|
|
<activity
|
2014-02-28 17:46:01 +00:00
|
|
|
android:name="eu.siacs.conversations.ui.SettingsActivity"
|
2014-05-23 14:20:49 +00:00
|
|
|
android:label="@string/title_activity_settings"
|
2014-07-07 08:51:06 +00:00
|
|
|
android:parentActivityName="eu.siacs.conversations.ui.ConversationActivity" >
|
2014-01-24 01:04:05 +00:00
|
|
|
</activity>
|
2014-07-16 22:03:37 +00:00
|
|
|
<activity android:name="eu.siacs.conversations.ui.ChooseContactActivity"
|
|
|
|
android:label="@string/title_activity_choose_contact">
|
|
|
|
</activity>
|
2014-01-24 01:04:05 +00:00
|
|
|
<activity
|
2014-02-28 17:46:01 +00:00
|
|
|
android:name="eu.siacs.conversations.ui.ManageAccountActivity"
|
2014-04-01 21:16:19 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-07-07 08:51:06 +00:00
|
|
|
android:label="@string/title_activity_manage_accounts"
|
|
|
|
android:parentActivityName="eu.siacs.conversations.ui.ConversationActivity" >
|
2014-03-03 04:01:02 +00:00
|
|
|
</activity>
|
2014-03-05 23:00:16 +00:00
|
|
|
<activity
|
2014-07-16 22:03:37 +00:00
|
|
|
android:name="eu.siacs.conversations.ui.ConferenceDetailsActivity"
|
2014-05-23 14:20:49 +00:00
|
|
|
android:label="@string/title_activity_conference_details"
|
2014-07-07 08:51:06 +00:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-03-05 14:41:14 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name="eu.siacs.conversations.ui.ContactDetailsActivity"
|
2014-05-23 14:20:49 +00:00
|
|
|
android:label="@string/title_activity_contact_details"
|
2014-07-07 08:51:06 +00:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-01-24 01:04:05 +00:00
|
|
|
</activity>
|
2014-03-13 20:45:38 +00:00
|
|
|
<activity
|
|
|
|
android:name="eu.siacs.conversations.ui.ShareWithActivity"
|
2014-07-07 08:51:06 +00:00
|
|
|
android:label="@string/title_activity_conversations" >
|
2014-03-13 20:45:38 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2014-07-07 08:51:06 +00:00
|
|
|
|
2014-03-13 20:45:38 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2014-07-07 08:51:06 +00:00
|
|
|
|
2014-03-13 20:45:38 +00:00
|
|
|
<data android:mimeType="text/plain" />
|
2014-06-15 10:01:46 +00:00
|
|
|
</intent-filter>
|
2014-07-07 08:51:06 +00:00
|
|
|
<intent-filter>
|
2014-06-15 10:01:46 +00:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
2014-07-07 08:51:06 +00:00
|
|
|
|
2014-06-15 10:01:46 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2014-07-07 08:51:06 +00:00
|
|
|
|
2014-06-03 12:10:18 +00:00
|
|
|
<data android:mimeType="image/*" />
|
2014-03-13 20:45:38 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-07-22 15:27:44 +00:00
|
|
|
<activity android:name="de.duenndns.ssl.MemorizingActivity" />
|
2014-01-24 01:04:05 +00:00
|
|
|
</application>
|
|
|
|
|
2014-07-21 18:30:51 +00:00
|
|
|
</manifest>
|