* Commits below include features from A15 that were preserved but had their implementations changed/replaced. Update strings Add Fluid power menu style Add Volume sound feedback Re-arrange developer category options Enable PIF spoof by default Drop Play store spoof Restore QS layout settings Add option to disable quicksettings on keyguard Add lockscreen media art Add pulse visualizer Add fading block renderer for Pulse Use master switch for pulse enable Update for edge light feature updates - Add 4-side rounded style option for edge light - Add rainbow gradient color mode - Add 3 new pulse style - Fix default values for edge light customization - Make ambient pulse configurable - Fix default value for edge light style Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Co-authored-by: rmp22 <195054967+rmp22@users.noreply.github.com> Co-authored-by: Ghosuto <clash.raja10@gmail.com>
37 lines
955 B
Java
37 lines
955 B
Java
/*
|
|
* Copyright (C) 2019-2025 Evolution X
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package org.evolution.settings;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
|
|
import com.android.settings.R;
|
|
import com.android.settings.dashboard.DashboardFragment;
|
|
import com.android.settings.search.BaseSearchIndexProvider;
|
|
import com.android.settingslib.search.SearchIndexable;
|
|
|
|
@SearchIndexable
|
|
public class EvolutionSettings extends DashboardFragment {
|
|
|
|
private static final String TAG = "EvolutionSettings";
|
|
|
|
@Override
|
|
protected int getPreferenceScreenResId() {
|
|
return R.xml.evolution_settings;
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return MetricsEvent.EVOLVER;
|
|
}
|
|
|
|
@Override
|
|
protected String getLogTag() {
|
|
return TAG;
|
|
}
|
|
|
|
public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
|
new BaseSearchIndexProvider(R.xml.evolution_settings);
|
|
}
|