mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-29 04:18:38 +03:00
19 lines
514 B
XML
19 lines
514 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.work.impl.WorkManagerInitializer"
|
||
|
android:authorities="${applicationId}.workmanager-init"
|
||
|
android:exported="false"
|
||
|
tools:node="remove" />
|
||
|
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|