Co-authored-by: Joey Huab <joey@evolution-x.org> Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Co-authored-by: xyyx <xyyx@mail.ru> Co-authored-by: Josh Fox (XlxFoXxlX) <joshfox87@gmail.com> Signed-off-by: AnierinB <anierin@evolution-x.org>
25 lines
595 B
Java
25 lines
595 B
Java
/*
|
|
* Copyright (C) 2019-2024 The Evolution X Project
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package org.evolution.settings;
|
|
|
|
import android.content.Context;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.BasePreferenceController;
|
|
|
|
public class TopLevelEvolutionSettingsPreferenceController extends BasePreferenceController {
|
|
|
|
public TopLevelEvolutionSettingsPreferenceController(Context context,
|
|
String preferenceKey) {
|
|
super(context, preferenceKey);
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
return AVAILABLE;
|
|
}
|
|
}
|