2014-10-22 18:38:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-09 10:51:35 +01:00
|
|
|
<manifest
|
|
|
|
package="eu.siacs.conversations"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2014-10-22 18:38:44 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2014-11-03 20:00:20 +01:00
|
|
|
<uses-permission android:name="android.permission.NFC" />
|
2014-10-22 18:38:44 +02:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2014-11-03 20:00:20 +01:00
|
|
|
android:theme="@style/ConversationsTheme"
|
2014-11-04 18:08:30 +01:00
|
|
|
tools:replace="android:label" >
|
|
|
|
<service android:name=".services.XmppConnectionService" />
|
2014-10-22 18:38:44 +02:00
|
|
|
|
2014-11-04 18:08:30 +01:00
|
|
|
<receiver android:name=".services.EventReceiver" >
|
2014-10-22 18:38:44 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ConversationActivity"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:label="@string/title_activity_conversations"
|
|
|
|
android:launchMode="singleTask"
|
2014-11-04 18:08:30 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" >
|
2014-10-22 18:38:44 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.StartConversationActivity"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-11-04 18:08:30 +01:00
|
|
|
android:label="@string/title_activity_start_conversation" >
|
2014-10-22 18:38:44 +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>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="xmpp" />
|
|
|
|
</intent-filter>
|
2014-11-03 20:00:20 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
|
2014-11-04 18:08:30 +01:00
|
|
|
|
2014-11-03 20:00:20 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2014-11-04 18:08:30 +01:00
|
|
|
|
2014-11-03 21:04:22 +01:00
|
|
|
<data android:scheme="xmpp" />
|
2014-11-03 20:00:20 +01:00
|
|
|
</intent-filter>
|
2014-10-22 18:38:44 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.SettingsActivity"
|
|
|
|
android:label="@string/title_activity_settings" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ChooseContactActivity"
|
|
|
|
android:label="@string/title_activity_choose_contact" />
|
2014-12-21 21:43:58 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.BlocklistActivity"
|
|
|
|
android:label="@string/title_activity_block_list" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ManageAccountActivity"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2014-11-04 18:08:30 +01:00
|
|
|
android:label="@string/title_activity_manage_accounts" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.EditAccountActivity"
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ConferenceDetailsActivity"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:label="@string/title_activity_conference_details"
|
2014-11-04 18:08:30 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ContactDetailsActivity"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:label="@string/title_activity_contact_details"
|
2014-11-04 18:08:30 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.PublishProfilePictureActivity"
|
2014-10-22 18:38:44 +02:00
|
|
|
android:label="@string/mgmt_account_publish_avatar"
|
2014-11-04 18:08:30 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-11-10 19:23:54 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.VerifyOTRActivity"
|
|
|
|
android:label="@string/verify_otr"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2014-10-22 18:38:44 +02:00
|
|
|
<activity
|
2014-11-04 18:08:30 +01:00
|
|
|
android:name=".ui.ShareWithActivity"
|
|
|
|
android:label="@string/title_activity_conversations" >
|
2014-10-22 18:38:44 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
2014-12-16 04:31:55 +01:00
|
|
|
<data android:mimeType="*/*" />
|
2014-10-22 18:38:44 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-11-09 10:51:35 +01:00
|
|
|
<activity
|
|
|
|
android:name="de.duenndns.ssl.MemorizingActivity"
|
|
|
|
android:theme="@style/ConversationsTheme"
|
|
|
|
tools:replace="android:theme"/>
|
2014-11-04 18:08:30 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ui.AboutActivity"
|
|
|
|
android:label="@string/title_activity_about"
|
|
|
|
android:parentActivityName=".ui.SettingsActivity" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="eu.siacs.conversations.ui.SettingsActivity" />
|
|
|
|
</activity>
|
2014-10-22 18:38:44 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|