blob: 8f927bced09c919ffd569d3b4c8838bb41f9c70b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package com.android.settings.profiles;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import cyanogenmod.app.Profile;
import cyanogenmod.app.ProfileManager;
import cyanogenmod.providers.CMSettings;
import java.util.UUID;
public class SetupDefaultProfileReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (CMSettings.System.getInt(context.getContentResolver(),
CMSettings.System.SYSTEM_PROFILES_ENABLED, 1) == 1) {
ProfileManager profileManager = ProfileManager.getInstance(context);
Profile defaultProfile = profileManager.getProfile(
UUID.fromString("0230226d-0d05-494a-a9bd-d222a1117655"));
if (defaultProfile != null) {
SetupActionsFragment.fillProfileWithCurrentSettings(context, defaultProfile);
profileManager.updateProfile(defaultProfile);
}
}
}
}
|