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 <data android:mimeType="application/vnd.conversations.backup" />
31 <data android:scheme="content" />
32 </intent-filter>
33 <intent-filter>
34 <action android:name="android.intent.action.VIEW"/>
35 <category android:name="android.intent.category.DEFAULT" />
36 <data android:mimeType="application/vnd.conversations.backup" />
37 <data android:scheme="file" />
38 </intent-filter>
39 </activity>
40
41 </application>
42</manifest>