2018-10-09 17:35:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="eu.siacs.conversations">
|
|
|
|
|
|
|
|
<application tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity
|
|
|
|
android:name=".ui.ManageAccountActivity"
|
|
|
|
android:label="@string/title_activity_manage_accounts"
|
|
|
|
android:launchMode="singleTask" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.WelcomeActivity"
|
|
|
|
android:label="@string/app_name"
|
2020-01-10 11:51:04 +00:00
|
|
|
android:launchMode="singleTask" />
|
2019-04-25 17:00:59 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.PickServerActivity"
|
|
|
|
android:label="@string/create_new_account"
|
2020-01-10 11:51:04 +00:00
|
|
|
android:launchMode="singleTask" />
|
2018-10-09 17:35:33 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.MagicCreateActivity"
|
2019-04-25 17:00:59 +00:00
|
|
|
android:label="@string/create_new_account"
|
2020-01-10 11:51:04 +00:00
|
|
|
android:launchMode="singleTask" />
|
2019-01-22 18:25:45 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ImportBackupActivity"
|
|
|
|
android:label="@string/restore_backup"
|
2019-07-17 09:32:56 +00:00
|
|
|
android:launchMode="singleTask">
|
|
|
|
<intent-filter>
|
2020-01-10 11:51:04 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-07-17 09:32:56 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-01-10 11:51:04 +00:00
|
|
|
|
2019-07-17 09:32:56 +00:00
|
|
|
<data android:mimeType="application/vnd.conversations.backup" />
|
|
|
|
<data android:scheme="content" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2020-01-10 11:51:04 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-07-17 09:32:56 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-01-10 11:51:04 +00:00
|
|
|
|
2019-07-17 09:32:56 +00:00
|
|
|
<data android:mimeType="application/vnd.conversations.backup" />
|
|
|
|
<data android:scheme="file" />
|
|
|
|
</intent-filter>
|
2020-06-19 07:31:23 +00:00
|
|
|
<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="content" />
|
|
|
|
<data android:host="*" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
<data android:pathPattern=".*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
</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="file" />
|
|
|
|
<data android:host="*" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
<data android:pathPattern=".*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
|
|
|
|
</intent-filter>
|
2019-07-17 09:32:56 +00:00
|
|
|
</activity>
|
2018-10-09 17:35:33 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|