mirror of
https://github.com/Steffo99/twom.git
synced 2024-11-25 01:24:24 +00:00
58 lines
No EOL
2 KiB
XML
58 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">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true">
|
|
|
|
<!--
|
|
Remove WorkManagerInitializer Provider because we are using on-demand initialization of WorkManager
|
|
https://github.com/matrix-org/matrix-android-sdk2-sample#androidmanifestxml-file
|
|
-->
|
|
<!--suppress AndroidDomInspection -->
|
|
<provider
|
|
android:name="androidx.startup.InitializationProvider"
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
android:exported="false"
|
|
tools:ignore="MissingClass"
|
|
tools:node="merge">
|
|
<meta-data
|
|
android:name="androidx.work.WorkManagerInitializer"
|
|
android:value="androidx.startup"
|
|
tools:node="remove" />
|
|
</provider>
|
|
|
|
<activity
|
|
android:name=".main.MainActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.TwoM">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".login.LoginActivity"
|
|
android:theme="@style/Theme.TwoM" />
|
|
|
|
<activity
|
|
android:name=".room.RoomActivity"
|
|
android:theme="@style/Theme.TwoM" />
|
|
|
|
<activity
|
|
android:name=".create.CreateActivity"
|
|
android:theme="@style/Theme.TwoM" />
|
|
|
|
</application>
|
|
|
|
</manifest> |