package com.architjn.materialicons.launchers;
import android.content.Context;
import android.content.Intent;
public class ApexLauncher {
public ApexLauncher(Context context) {
Intent intent = new Intent("com.anddoes.launcher.SET_THEME");
intent.putExtra("com.anddoes.launcher.THEME_PACKAGE_NAME", context.getPackageName());
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
}
}