Skip to content

Commit b47acb5

Browse files
committed
Fixed replica's manifest to use a different content provider authority.
Test: ./gradlew assembleDebug && \ adb install ./out/gradle/TestDPC/build/outputs/apk/normal/debug/TestDPC-normal-debug.apk && \ adb install out/gradle/TestDPC/build/outputs/apk/replica/debug/TestDPC-replica-debug.apk Fixes: 179019819 Change-Id: I9235f3a78692600d1c9bb0520ff789d9dc841a73 (cherry picked from commit a455981e2b1f7c384de9faed5cbda939d8c4ac20)
1 parent 46586d0 commit b47acb5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app/src/replica/AndroidManifest.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,12 @@
2626
android:name="android.support.FILE_PROVIDER_PATHS"
2727
android:resource="@xml/filepaths" />
2828
</provider>
29+
<provider xmlns:tools="http://schemas.android.com/tools"
30+
tools:replace="android:authorities"
31+
android:authorities="com.afwsamples.testdpc.replica.usericoncontentprovider"
32+
android:name="com.afwsamples.testdpc.UserIconContentProvider"
33+
android:grantUriPermissions="true"
34+
android:exported="true">
35+
</provider>
2936
</application>
3037
</manifest>

0 commit comments

Comments
 (0)