public final class FrameworkZips {
public static final String ARCH = getArch();
public static final String SDK = Integer.toString(Build.VERSION.SDK_INT);
private static final File ONLINE_FILE = new File(XposedApp.getInstance().getCacheDir(), "framework.json");
private static final String ONLINE_URL = "http://dl-xda.xposed.info/framework.json";
public enum Type {
INSTALLER(R.string.install_update, R.string.framework_install, R.string.framework_install_recovery),
UNINSTALLER(R.string.uninstall, R.string.uninstall, R.string.framework_uninstall_recovery);
public final int title;
public final int text_flash;
public final int text_flash_recovery;
Type(@StringRes int title, @StringRes int text_flash, @StringRes int text_flash_recovery) {
this.title = title;
this.text_flash = text_flash;
this.text_flash_recovery = text_flash_recovery;
}
}