2021-09-02 10:43:39 +03:00
|
|
|
<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
|
2021-09-30 13:06:57 +03:00
|
|
|
android:name="androidx.startup.InitializationProvider"
|
|
|
|
android:authorities="${applicationId}.androidx-startup"
|
2021-09-02 10:43:39 +03:00
|
|
|
android:exported="false"
|
2021-09-30 13:06:57 +03:00
|
|
|
tools:node="merge">
|
|
|
|
<meta-data
|
|
|
|
android:name="androidx.work.WorkManagerInitializer"
|
|
|
|
android:value="androidx.startup"
|
|
|
|
tools:node="remove" />
|
|
|
|
</provider>
|
2021-09-02 10:43:39 +03:00
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|