package com.architjn.materialicons.launchers;
import android.content.Context;
import android.content.Intent;
import com.architjn.materialicons.R;
public class KkLauncher {
public KkLauncher(Context context) {
Intent kkApply = new Intent("com.kk.launcher.APPLY_ICON_THEME");
kkApply.putExtra("com.kk.launcher.theme.EXTRA_PKG", context.getPackageName());
kkApply.putExtra("com.kk.launcher.theme.EXTRA_NAME", context.getResources().getString(R.string.theme_title));
context.startActivity(kkApply);
}
}