blob: bb6496148165df2a704e5ff17121a7c1806a1753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.cyanogenmod.settings.device;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class Startup extends BroadcastReceiver {
@Override
public void onReceive(final Context context, final Intent bootintent) {
ColorTuningPreference.restore(context);
TouchKeyBacklightTimeout.restore(context);
Hspa.restore(context);
}
}
|