2023-11-04 13:47:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-11-20 01:23:51 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-11-04 13:47:07 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
2023-11-15 19:10:08 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2023-11-04 13:47:07 +00:00
|
|
|
<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"
|
2023-11-15 19:10:08 +00:00
|
|
|
android:supportsRtl="true">
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Remove WorkManagerInitializer Provider because we are using on-demand initialization of WorkManager
|
2023-11-19 16:44:50 +00:00
|
|
|
https://github.com/matrix-org/matrix-android-sdk2-sample#androidmanifestxml-file
|
2023-11-15 19:10:08 +00:00
|
|
|
-->
|
2023-11-19 16:44:50 +00:00
|
|
|
<!--suppress AndroidDomInspection -->
|
2023-11-15 19:10:08 +00:00
|
|
|
<provider
|
|
|
|
android:name="androidx.startup.InitializationProvider"
|
|
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
|
|
android:exported="false"
|
2023-11-19 16:44:50 +00:00
|
|
|
tools:ignore="MissingClass"
|
2023-11-15 19:10:08 +00:00
|
|
|
tools:node="merge">
|
|
|
|
<meta-data
|
|
|
|
android:name="androidx.work.WorkManagerInitializer"
|
|
|
|
android:value="androidx.startup"
|
|
|
|
tools:node="remove" />
|
|
|
|
</provider>
|
|
|
|
|
2023-11-04 13:47:07 +00:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2023-11-20 01:23:51 +00:00
|
|
|
android:exported="true"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
2023-11-04 13:47:07 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2023-11-19 18:33:54 +00:00
|
|
|
|
|
|
|
<activity
|
2023-11-20 01:23:51 +00:00
|
|
|
android:name=".ui.login.LoginActivity"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.homeserver.SelectHomeserverActivity"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar" />
|
2023-11-19 18:33:54 +00:00
|
|
|
|
2023-11-04 13:47:07 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|