2017-11-05 20:41:23 +00:00
|
|
|
package com.topjohnwu.magisk.utils;
|
|
|
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class Const {
|
|
|
|
|
|
|
|
public static final String DEBUG_TAG = "MagiskManager";
|
|
|
|
public static final String ORIG_PKG_NAME = "com.topjohnwu.magisk";
|
|
|
|
public static final String SNET_PKG = "com.topjohnwu.snet";
|
|
|
|
public static final String MAGISKHIDE_PROP = "persist.magisk.hide";
|
|
|
|
public static final String DISABLE_INDICATION_PROP = "ro.magisk.disable";
|
|
|
|
|
|
|
|
// APK content
|
|
|
|
public static final String PUBLIC_KEY_NAME = "public.certificate.x509.pem";
|
|
|
|
public static final String PRIVATE_KEY_NAME = "private.key.pk8";
|
|
|
|
public static final String UNINSTALLER = "magisk_uninstaller.sh";
|
|
|
|
public static final String UTIL_FUNCTIONS= "util_functions.sh";
|
|
|
|
public static final String ANDROID_MANIFEST = "AndroidManifest.xml";
|
|
|
|
|
|
|
|
// Paths
|
|
|
|
public static final String MAGISK_DISABLE_FILE = "/cache/.disable_magisk";
|
|
|
|
public static final String MAGISK_HOST_FILE = "/magisk/.core/hosts";
|
|
|
|
public static final String TMP_FOLDER_PATH = "/dev/tmp";
|
|
|
|
public static final String MAGISK_PATH = "/magisk";
|
|
|
|
public static final String MAGISK_LOG = "/cache/magisk.log";
|
|
|
|
public static final String BUSYBOXPATH = "/dev/magisk/bin";
|
|
|
|
|
|
|
|
/* A list of apps that should not be shown as hide-able */
|
|
|
|
public static final List<String> SN_BLACKLIST = Arrays.asList(
|
|
|
|
"android",
|
|
|
|
"com.topjohnwu.magisk",
|
|
|
|
"com.google.android.gms"
|
|
|
|
);
|
|
|
|
|
|
|
|
/* A list of apps that already uses SafetyNet
|
|
|
|
* They DO NOT need to be added to hide list */
|
|
|
|
public static final List<String> SN_DEFAULTLIST = Arrays.asList(
|
|
|
|
"com.google.android.apps.walletnfcrel",
|
|
|
|
"com.nianticlabs.pokemongo"
|
|
|
|
);
|
|
|
|
|
|
|
|
public static class ID {
|
|
|
|
public static final int UPDATE_SERVICE_ID = 1;
|
|
|
|
public static final int FETCH_ZIP = 2;
|
|
|
|
public static final int SELECT_BOOT = 3;
|
|
|
|
|
|
|
|
// notifications
|
|
|
|
public static final int MAGISK_UPDATE_NOTIFICATION_ID = 4;
|
|
|
|
public static final int APK_UPDATE_NOTIFICATION_ID = 5;
|
|
|
|
public static final int ONBOOT_NOTIFICATION_ID = 6;
|
|
|
|
public static final String NOTIFICATION_CHANNEL = "magisk_update_notice";
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class Url {
|
|
|
|
public static final String STABLE_URL = "https://raw.githubusercontent.com/topjohnwu/MagiskManager/update/stable.json";
|
|
|
|
public static final String BETA_URL = "https://raw.githubusercontent.com/topjohnwu/MagiskManager/update/beta.json";
|
|
|
|
public static final String SNET_URL = "https://www.dropbox.com/s/jg2yhcrn3l9fckc/snet.apk?dl=1";
|
|
|
|
public static final String REPO_URL = "https://api.github.com/users/Magisk-Modules-Repo/repos?per_page=100&page=%d";
|
|
|
|
public static final String FILE_URL = "https://raw.githubusercontent.com/Magisk-Modules-Repo/%s/master/%s";
|
|
|
|
public static final String ZIP_URL = "https://github.com/Magisk-Modules-Repo/%s/archive/master.zip";
|
|
|
|
public static final String DONATION_URL = "https://www.paypal.me/topjohnwu";
|
|
|
|
public static final String XDA_THREAD = "http://forum.xda-developers.com/showthread.php?t=3432382";
|
|
|
|
public static final String SOURCE_CODE_URL = "https://github.com/topjohnwu/MagiskManager";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static class Key {
|
|
|
|
// su
|
|
|
|
public static final String ROOT_ACCESS = "root_access";
|
|
|
|
public static final String SU_MULTIUSER_MODE = "multiuser_mode";
|
|
|
|
public static final String SU_MNT_NS = "mnt_ns";
|
|
|
|
public static final String SU_REQUESTER = "requester";
|
|
|
|
public static final String SU_REQUEST_TIMEOUT = "su_request_timeout";
|
|
|
|
public static final String SU_AUTO_RESPONSE = "su_auto_response";
|
|
|
|
public static final String SU_NOTIFICATION = "su_notification";
|
|
|
|
public static final String SU_REAUTH = "su_reauth";
|
|
|
|
|
|
|
|
// intents
|
|
|
|
public static final String OPEN_SECTION = "section";
|
|
|
|
public static final String INTENT_SET_VERSION = "version";
|
|
|
|
public static final String INTENT_SET_LINK = "link";
|
2017-11-05 21:36:20 +00:00
|
|
|
public static final String INTENT_PERM = "perm_dialog";
|
2017-11-05 20:41:23 +00:00
|
|
|
public static final String FLASH_ACTION = "action";
|
|
|
|
public static final String FLASH_SET_BOOT = "boot";
|
|
|
|
public static final String FLASH_SET_ENC = "enc";
|
|
|
|
public static final String FLASH_SET_VERITY = "verity";
|
|
|
|
|
2017-11-05 21:36:20 +00:00
|
|
|
|
2017-11-05 20:41:23 +00:00
|
|
|
// others
|
|
|
|
public static final String UPDATE_NOTIFICATION = "notification";
|
|
|
|
public static final String UPDATE_CHANNEL = "update_channel";
|
|
|
|
public static final String BOOT_FORMAT = "boot_format";
|
|
|
|
public static final String SNET_VER = "snet_version";
|
|
|
|
public static final String UPDATE_SERVICE_VER = "update_service_version";
|
|
|
|
public static final String MAGISKHIDE = "magiskhide";
|
|
|
|
public static final String HOSTS = "hosts";
|
|
|
|
public static final String DISABLE = "disable";
|
|
|
|
public static final String LOCALE = "locale";
|
|
|
|
public static final String DARK_THEME = "dark_theme";
|
|
|
|
public static final String ETAG_KEY = "ETag";
|
|
|
|
public static final String LINK_KEY = "Link";
|
|
|
|
public static final String IF_NONE_MATCH = "If-None-Match";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static class Value {
|
|
|
|
public static final int STABLE_CHANNEL = 0;
|
|
|
|
public static final int BETA_CHANNEL = 1;
|
|
|
|
public static final int ROOT_ACCESS_DISABLED = 0;
|
|
|
|
public static final int ROOT_ACCESS_APPS_ONLY = 1;
|
|
|
|
public static final int ROOT_ACCESS_ADB_ONLY = 2;
|
|
|
|
public static final int ROOT_ACCESS_APPS_AND_ADB = 3;
|
|
|
|
public static final int MULTIUSER_MODE_OWNER_ONLY = 0;
|
|
|
|
public static final int MULTIUSER_MODE_OWNER_MANAGED = 1;
|
|
|
|
public static final int MULTIUSER_MODE_USER = 2;
|
|
|
|
public static final int NAMESPACE_MODE_GLOBAL = 0;
|
|
|
|
public static final int NAMESPACE_MODE_REQUESTER = 1;
|
|
|
|
public static final int NAMESPACE_MODE_ISOLATE = 2;
|
|
|
|
public static final int NO_NOTIFICATION = 0;
|
|
|
|
public static final int NOTIFICATION_TOAST = 1;
|
|
|
|
public static final int NOTIFY_NORMAL_LOG = 0;
|
|
|
|
public static final int NOTIFY_USER_TOASTS = 1;
|
|
|
|
public static final int NOTIFY_USER_TO_OWNER = 2;
|
|
|
|
public static final int SU_PROMPT = 0;
|
|
|
|
public static final int SU_AUTO_DENY = 1;
|
|
|
|
public static final int SU_AUTO_ALLOW = 2;
|
|
|
|
public static final String FLASH_ZIP = "flash";
|
|
|
|
public static final String PATCH_BOOT = "patch";
|
|
|
|
public static final String FLASH_MAGISK = "magisk";
|
|
|
|
public static final int[] timeoutList = {0, -1, 10, 20, 30, 60};
|
|
|
|
public static final int UPDATE_SERVICE_VER = 1;
|
|
|
|
public static final int SNET_VER = 3;
|
|
|
|
public static final int MIN_TEMPLATE_VER = 4;
|
|
|
|
}
|
|
|
|
}
|