53 lines
No EOL
2 KiB
XML
53 lines
No EOL
2 KiB
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">
|
|
|
|
<application
|
|
android:name=".ToDoApp"
|
|
android:allowBackup="true"
|
|
android:appCategory="productivity"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:enableOnBackInvokedCallback="true"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.ToDo"
|
|
tools:targetApi="34">
|
|
|
|
<activity
|
|
android:name=".views.main.MainActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTask">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".views.settings.SettingsActivity"
|
|
android:exported="false"
|
|
android:label="@string/settings_label"
|
|
android:launchMode="singleTask">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".views.all.AllTasksActivity"
|
|
android:exported="false"
|
|
android:label="@string/all_tasks_label"
|
|
android:launchMode="singleTask" />
|
|
<activity
|
|
android:name=".views.about.AboutActivity"
|
|
android:exported="false"
|
|
android:label="@string/about_label"
|
|
android:launchMode="singleTask" />
|
|
<activity
|
|
android:name=".views.crash.CrashActivity"
|
|
android:exported="false" />
|
|
</application>
|
|
|
|
</manifest> |