package com.architjn.materialicons.launchers;
import android.content.Context;
import android.content.Intent;
public class AdwLauncher {
public AdwLauncher(Context context) {
Intent intent = new Intent("org.adw.launcher.SET_THEME");
intent.putExtra("org.adw.launcher.theme.NAME", context.getPackageName());
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
}
}