393b71efda
Instant apps must be able to communicate with the camera extension proxy service. Bug: 199695516 Test: atest -c --instant cts/tests/camera/src/android/hardware/camera2/cts/CameraExtensionCharacteristicsTest.java atest -c --instant cts/tests/camera/src/android/hardware/camera2/cts/CameraExtensionSessionTest.java Change-Id: Ibf6adaf4746456fd88656e894a1d9ea45a7b07cc
18 lines
602 B
XML
18 lines
602 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.cameraextensions">
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:directBootAware="true">
|
|
|
|
<service android:name=".CameraExtensionsProxyService"
|
|
android:visibleToInstantApps="true"
|
|
android:exported="true">
|
|
</service>
|
|
<uses-library android:name="androidx.camera.extensions.impl" android:required="false" />
|
|
</application>
|
|
|
|
</manifest>
|