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"
|
|
|
|
android:launchMode="singleTask"/>
|
2019-04-25 17:00:59 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.PickServerActivity"
|
|
|
|
android:label="@string/create_new_account"
|
|
|
|
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"
|
2018-10-09 17:35:33 +00:00
|
|
|
android:launchMode="singleTask"/>
|
2019-01-22 18:25:45 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ImportBackupActivity"
|
|
|
|
android:label="@string/restore_backup"
|
|
|
|
android:launchMode="singleTask" />
|
2018-10-09 17:35:33 +00:00
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|