Its broken and isn't worth maintaining, instead port the few things using it over to SettingsPreferenceActivity with wrapping blank Activities like the rest of Settings. Change-Id: Ic82f0dcb63ed9b4078f7da6a79c0c52f0130e8d1 Fixes: 28779941
27 lines
785 B
Java
27 lines
785 B
Java
package com.android.settings;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import static com.android.internal.telephony.TelephonyIntents.SECRET_CODE_ACTION;
|
|
|
|
import com.android.settings.Settings.TestingSettingsActivity;
|
|
|
|
|
|
public class TestingSettingsBroadcastReceiver extends BroadcastReceiver {
|
|
|
|
public TestingSettingsBroadcastReceiver() {
|
|
}
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
if (intent.getAction().equals(SECRET_CODE_ACTION)) {
|
|
Intent i = new Intent(Intent.ACTION_MAIN);
|
|
i.setClass(context, TestingSettingsActivity.class);
|
|
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
context.startActivity(i);
|
|
}
|
|
}
|
|
}
|