MotoActions: 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:
parent
9c6227b575
commit
320254d1c4
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2016 The CyanogenMod Project
|
* Copyright (c) 2016 The CyanogenMod Project
|
||||||
* Copyright (c) 2017-2022 The LineageOS Project
|
* Copyright (c) 2017-2024 The LineageOS Project
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -20,7 +20,6 @@ package org.lineageos.settings.device;
|
|||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
|
||||||
import com.android.settingslib.collapsingtoolbar.CollapsingToolbarBaseActivity;
|
import com.android.settingslib.collapsingtoolbar.CollapsingToolbarBaseActivity;
|
||||||
import com.android.settingslib.widget.R;
|
|
||||||
|
|
||||||
public class ActionsPreferenceActivity extends CollapsingToolbarBaseActivity {
|
public class ActionsPreferenceActivity extends CollapsingToolbarBaseActivity {
|
||||||
|
|
||||||
@ -29,7 +28,8 @@ public class ActionsPreferenceActivity extends CollapsingToolbarBaseActivity {
|
|||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
getFragmentManager()
|
getFragmentManager()
|
||||||
.beginTransaction()
|
.beginTransaction()
|
||||||
.replace(R.id.content_frame, new ActionsPreferenceFragment())
|
.replace(com.android.settingslib.collapsingtoolbar.R.id.content_frame,
|
||||||
|
new ActionsPreferenceFragment())
|
||||||
.commit();
|
.commit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2015-2016 The CyanogenMod Project
|
* Copyright (C) 2015-2016 The CyanogenMod Project
|
||||||
* 2017,2022 The LineageOS Project
|
* 2017-2024 The LineageOS Project
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -20,7 +20,6 @@ package org.lineageos.settings.device;
|
|||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
|
||||||
import com.android.settingslib.collapsingtoolbar.CollapsingToolbarBaseActivity;
|
import com.android.settingslib.collapsingtoolbar.CollapsingToolbarBaseActivity;
|
||||||
import com.android.settingslib.widget.R;
|
|
||||||
|
|
||||||
public class DozePreferenceActivity extends CollapsingToolbarBaseActivity {
|
public class DozePreferenceActivity extends CollapsingToolbarBaseActivity {
|
||||||
|
|
||||||
@ -31,7 +30,8 @@ public class DozePreferenceActivity extends CollapsingToolbarBaseActivity {
|
|||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
getFragmentManager()
|
getFragmentManager()
|
||||||
.beginTransaction()
|
.beginTransaction()
|
||||||
.replace(R.id.content_frame, new DozePreferenceFragment(), TAG_DOZE)
|
.replace(com.android.settingslib.collapsingtoolbar.R.id.content_frame,
|
||||||
|
new DozePreferenceFragment(), TAG_DOZE)
|
||||||
.commit();
|
.commit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user