sm6150-common: parts: Enable use_resource_processor for all sysui deps

This will make the build faster

Test: m checkbuild
Bug: 295208392
Change-Id: I0c1bd901429bbe3bf81c1530e156735f8637a96e
This commit is contained in:
Peter Kalauskas 2023-09-18 22:10:57 +00:00 committed by basamaryan
parent 663a48924f
commit 602abf752f
No known key found for this signature in database
GPG Key ID: 0A28C6D8648B81DD

View File

@ -1,6 +1,6 @@
/*
* Copyright (C) 2015-2016 The CyanogenMod Project
* 2017 The LineageOS Project
* 2017-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.
@ -20,7 +20,6 @@ package org.lineageos.settings.doze;
import android.os.Bundle;
import com.android.settingslib.collapsingtoolbar.CollapsingToolbarBaseActivity;
import com.android.settingslib.widget.R;
public class DozeSettingsActivity extends CollapsingToolbarBaseActivity {
private static final String TAG_DOZE = "doze";
@ -31,7 +30,8 @@ public class DozeSettingsActivity extends CollapsingToolbarBaseActivity {
getFragmentManager()
.beginTransaction()
.replace(R.id.content_frame, new DozeSettingsFragment(), TAG_DOZE)
.replace(com.android.settingslib.collapsingtoolbar.R.id.content_frame,
new DozeSettingsFragment(), TAG_DOZE)
.commit();
}
}