Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a250cbc6 authored by Emilian Peev's avatar Emilian Peev
Browse files

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
parent 0b0c9dc8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -210,9 +210,9 @@ public final class CameraExtensionCharacteristics {
     */
    private static final class CameraExtensionManagerGlobal {
        private static final String TAG = "CameraExtensionManagerGlobal";
        private static final String PROXY_PACKAGE_NAME = "com.android.camera";
        private static final String PROXY_PACKAGE_NAME = "com.android.cameraextensions";
        private static final String PROXY_SERVICE_NAME =
                "com.android.camera.CameraExtensionsProxyService";
                "com.android.cameraextensions.CameraExtensionsProxyService";

        // Singleton instance
        private static final CameraExtensionManagerGlobal GLOBAL_CAMERA_MANAGER =
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.camera">
    package="com.android.cameraextensions">

    <application
        android:label="@string/app_name"
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.camera;
package com.android.cameraextensions;

import android.app.Service;
import android.content.Context;