From c1f951a34755461f7a781113eb170fc784399eaa Mon Sep 17 00:00:00 2001 From: Peter Kalauskas Date: Mon, 18 Sep 2023 22:10:57 +0000 Subject: [PATCH] davinci: motor: Enable use_resource_processor for all sysui deps This will make the build faster Test: m checkbuild Bug: 295208392 Change-Id: I0c1bd901429bbe3bf81c1530e156735f8637a96e --- .../lineageos/popupcamera/PopupCameraSettingsActivity.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java b/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java index 5b1072c..4e4f185 100644 --- a/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java +++ b/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 The LineageOS Project + * Copyright (C) 2020-2024 The LineageOS Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,6 @@ package org.lineageos.popupcamera; import android.os.Bundle; import com.android.settingslib.collapsingtoolbar.CollapsingToolbarBaseActivity; -import com.android.settingslib.widget.R; public class PopupCameraSettingsActivity extends CollapsingToolbarBaseActivity { private static final String TAG_POPUPCAMERA = "popupcamera"; @@ -30,7 +29,8 @@ public class PopupCameraSettingsActivity extends CollapsingToolbarBaseActivity { getFragmentManager() .beginTransaction() - .replace(R.id.content_frame, new PopupCameraSettingsFragment(), TAG_POPUPCAMERA) + .replace(com.android.settingslib.collapsingtoolbar.R.id.content_frame, + new PopupCameraSettingsFragment(), TAG_POPUPCAMERA) .commit(); } }