Emilian Peev a250cbc60f Camera: Switch camera extension proxy service package name
The current service package name is somewhat generic. To avoid
any potential name clashes, include the word 'extensions'.

Bug: 191192321
Test: Camera CTS
Change-Id: Ib89c455bcadc2c7c888ababd077d4deebe3e8d14
2021-06-15 16:16:31 -07:00

17 lines
554 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:exported="true">
</service>
<uses-library android:name="androidx.camera.extensions.impl" android:required="false" />
</application>
</manifest>