mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-27 19:38:53 +03:00
23 lines
708 B
XML
23 lines
708 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="org.matrix.android.sdk">
|
|
|
|
<application>
|
|
|
|
<!--
|
|
This is mandatory to run integration tests
|
|
-->
|
|
<provider
|
|
android:name="androidx.startup.InitializationProvider"
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
android:exported="false"
|
|
tools:node="merge">
|
|
<meta-data
|
|
android:name="androidx.work.WorkManagerInitializer"
|
|
android:value="androidx.startup"
|
|
tools:node="remove" />
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
</manifest>
|