AndroidManifest.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 3    xmlns:tools="http://schemas.android.com/tools"
 4    package="eu.siacs.conversations">
 5
 6    <application tools:ignore="GoogleAppIndexingWarning">
 7        <activity
 8            android:name=".ui.ManageAccountActivity"
 9            android:label="@string/title_activity_manage_accounts"
10            android:launchMode="singleTask" />
11        <activity
12            android:name=".ui.WelcomeActivity"
13            android:label="@string/app_name"
14            android:launchMode="singleTask" />
15        <activity
16            android:name=".ui.PickServerActivity"
17            android:label="@string/create_new_account"
18            android:launchMode="singleTask" />
19        <activity
20            android:name=".ui.MagicCreateActivity"
21            android:label="@string/create_new_account"
22            android:launchMode="singleTask" />
23        <activity
24            android:name=".ui.ImportBackupActivity"
25            android:label="@string/restore_backup"
26            android:launchMode="singleTask">
27            <intent-filter>
28                <action android:name="android.intent.action.VIEW" />
29                <category android:name="android.intent.category.DEFAULT" />
30
31                <data android:mimeType="application/vnd.conversations.backup" />
32                <data android:scheme="content" />
33            </intent-filter>
34            <intent-filter>
35                <action android:name="android.intent.action.VIEW" />
36                <category android:name="android.intent.category.DEFAULT" />
37
38                <data android:mimeType="application/vnd.conversations.backup" />
39                <data android:scheme="file" />
40            </intent-filter>
41        </activity>
42    </application>
43</manifest>