Allow ActivityEmbedding in APEX modules.

Also this lib uses HTTP and doesn't declare it, so after manifest merge
the APEX module won't build.  Add the uses-library.

Bug: 253394518
Test: test builds
Change-Id: I94cb2be58d88521ed10e4fba5b5e11169bead624
This commit is contained in:
Simon Wingrove
2022-10-14 11:45:56 +01:00
parent ba201802b3
commit a4156b6f4d
2 changed files with 6 additions and 0 deletions

View File

@@ -26,4 +26,9 @@ android_library {
"androidx.window.extensions",
"androidx.window.sidecar",
],
apex_available: [
"//apex_available:platform",
"com.android.permission",
],
}

View File

@@ -21,6 +21,7 @@
<uses-sdk android:minSdkVersion="21" />
<application>
<uses-library android:name="org.apache.http.legacy" android:required="false" />
<uses-library android:name="androidx.window.extensions" android:required="false" />
<uses-library android:name="androidx.window.sidecar" android:required="false" />
</application>