package com.architjn.materialicons.launchers;
import android.content.Context;
import android.content.Intent;
public class AtomLauncher {
public AtomLauncher(Context context) {
Intent atom = new Intent("com.dlto.atom.launcher.intent.action.ACTION_VIEW_THEME_SETTINGS");
atom.setPackage("com.dlto.atom.launcher");
atom.putExtra("packageName", context.getPackageName());
atom.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(atom);
}
}