22 lines
795 B
XML
22 lines
795 B
XML
|
<?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"/>
|
||
|
<activity
|
||
|
android:name=".ui.MagicCreateActivity"
|
||
|
android:label="@string/create_account"
|
||
|
android:launchMode="singleTask"/>
|
||
|
|
||
|
</application>
|
||
|
</manifest>
|