Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
provider#androidx.work.impl.WorkManagerInitializer was tagged at AndroidManifest.xml:16 to remove other declarations but no other declaration present
  • Loading branch information
bmarty committed Sep 2, 2021
1 parent f37dadc commit 616e5b1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
18 changes: 18 additions & 0 deletions matrix-sdk-android/src/androidTest/AndroidManifest.xml
@@ -0,0 +1,18 @@
<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>
9 changes: 0 additions & 9 deletions matrix-sdk-android/src/main/AndroidManifest.xml
Expand Up @@ -10,15 +10,6 @@

<application android:networkSecurityConfig="@xml/network_security_config">

<!--
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" />

<!--
The SDK offers a secured File provider to access downloaded files.
Access to these file will be given via the FileService, with a temporary
Expand Down

0 comments on commit 616e5b1

Please sign in to comment.