diff --git a/src/com/android/settings/DeviceInfoSettings.java b/src/com/android/settings/DeviceInfoSettings.java index c584ac23db2..41eb6c66824 100644 --- a/src/com/android/settings/DeviceInfoSettings.java +++ b/src/com/android/settings/DeviceInfoSettings.java @@ -120,6 +120,32 @@ public class DeviceInfoSettings extends DashboardFragment implements Indexable { Activity activity, Fragment fragment, Lifecycle lifecycle) { if (FeatureFlagUtils.isEnabled(DEVICE_INFO_V2_FEATURE_FLAG)) { final List controllers = new ArrayList<>(); + + // Device name + + // Phone number + + // SIM status + + // Model & hardware + + // IMEI + + // Android version + + // IP address + + // Wifi MAC address + + // Bluetooth Address + + controllers.add(new RegulatoryInfoPreferenceController(context)); + + controllers.add(new SafetyInfoPreferenceController(context)); + + controllers.add( + new BuildNumberPreferenceController(context, activity, fragment, lifecycle)); + return controllers; }