Emilian Peev 393b71efda Camera: Enable instant access to camera extension proxy service
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
2021-09-14 17:05:24 -07:00

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>