2018-07-31 09:42:35 +00:00
|
|
|
package com.topjohnwu.magisk;
|
2017-11-05 20:41:23 +00:00
|
|
|
|
2018-12-02 20:28:18 +00:00
|
|
|
import android.os.Environment;
|
2017-12-11 18:35:00 +00:00
|
|
|
import android.os.Process;
|
2017-11-17 16:04:31 +00:00
|
|
|
|
|
|
|
import java.io.File;
|
2017-11-05 20:41:23 +00:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class Const {
|
|
|
|
|
|
|
|
public static final String DEBUG_TAG = "MagiskManager";
|
|
|
|
public static final String MAGISKHIDE_PROP = "persist.magisk.hide";
|
|
|
|
|
|
|
|
// APK content
|
|
|
|
public static final String ANDROID_MANIFEST = "AndroidManifest.xml";
|
|
|
|
|
2018-01-11 17:53:49 +00:00
|
|
|
public static final String SU_KEYSTORE_KEY = "su_key";
|
|
|
|
|
2017-11-05 20:41:23 +00:00
|
|
|
// Paths
|
2018-11-15 18:57:41 +00:00
|
|
|
public static final String MAGISK_PATH = "/sbin/.magisk/img";
|
2018-12-02 20:28:18 +00:00
|
|
|
public static final File EXTERNAL_PATH;
|
2018-06-02 14:00:52 +00:00
|
|
|
public static File MAGISK_DISABLE_FILE;
|
|
|
|
|
2018-06-25 22:04:11 +00:00
|
|
|
static {
|
2018-11-15 18:57:41 +00:00
|
|
|
MAGISK_DISABLE_FILE = new File("xxx");
|
2018-12-02 20:28:18 +00:00
|
|
|
EXTERNAL_PATH = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
|
|
|
|
EXTERNAL_PATH.mkdirs();
|
2018-06-25 22:04:11 +00:00
|
|
|
}
|
|
|
|
|
2018-11-15 06:36:03 +00:00
|
|
|
public static final String BUSYBOX_PATH = "/sbin/.magisk/busybox";
|
2017-11-05 20:41:23 +00:00
|
|
|
public static final String TMP_FOLDER_PATH = "/dev/tmp";
|
|
|
|
public static final String MAGISK_LOG = "/cache/magisk.log";
|
2017-12-08 15:38:03 +00:00
|
|
|
public static final String MANAGER_CONFIGS = ".tmp.magisk.config";
|
2017-11-05 20:41:23 +00:00
|
|
|
|
2017-12-26 10:24:43 +00:00
|
|
|
// Versions
|
|
|
|
public static final int UPDATE_SERVICE_VER = 1;
|
2018-10-28 04:54:56 +00:00
|
|
|
public static final int MIN_MODULE_VER = 1500;
|
2017-12-26 10:24:43 +00:00
|
|
|
|
2017-11-05 20:41:23 +00:00
|
|
|
/* A list of apps that should not be shown as hide-able */
|
2017-12-20 07:46:04 +00:00
|
|
|
public static final List<String> HIDE_BLACKLIST = Arrays.asList(
|
2018-07-31 09:41:54 +00:00
|
|
|
Data.MM().getPackageName(),
|
2017-11-05 20:41:23 +00:00
|
|
|
"com.google.android.gms"
|
|
|
|
);
|
|
|
|
|
2017-12-11 18:35:00 +00:00
|
|
|
public static final int USER_ID = Process.myUid() / 100000;
|
|
|
|
|
2018-04-14 07:32:37 +00:00
|
|
|
public static final class MAGISK_VER {
|
2018-04-14 10:08:53 +00:00
|
|
|
public static final int SEPOL_REFACTOR = 1640;
|
2018-05-13 10:14:10 +00:00
|
|
|
public static final int FIX_ENV = 1650;
|
2018-09-01 14:46:13 +00:00
|
|
|
public static final int DBVER_SIX = 17000;
|
2018-10-27 21:54:48 +00:00
|
|
|
public static final int CMDLINE_DB = 17305;
|
2018-11-16 05:37:41 +00:00
|
|
|
public static final int HIDE_STATUS = 17315;
|
2018-04-14 07:32:37 +00:00
|
|
|
}
|
|
|
|
|
2017-11-05 20:41:23 +00:00
|
|
|
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;
|
2018-07-20 18:59:36 +00:00
|
|
|
public static final int ONBOOT_SERVICE_ID = 6;
|
2017-11-05 20:41:23 +00:00
|
|
|
|
|
|
|
// notifications
|
|
|
|
public static final int MAGISK_UPDATE_NOTIFICATION_ID = 4;
|
|
|
|
public static final int APK_UPDATE_NOTIFICATION_ID = 5;
|
2017-11-14 20:39:05 +00:00
|
|
|
public static final int DTBO_NOTIFICATION_ID = 7;
|
2018-12-03 07:28:20 +00:00
|
|
|
public static final int HIDE_MANAGER_NOTIFICATION_ID = 8;
|
2018-12-02 20:15:42 +00:00
|
|
|
public static final String UPDATE_NOTIFICATION_CHANNEL = "update";
|
|
|
|
public static final String PROGRESS_NOTIFICATION_CHANNEL = "progress";
|
2017-11-05 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static class Url {
|
2018-07-18 20:18:08 +00:00
|
|
|
public static final String STABLE_URL = "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/stable.json";
|
|
|
|
public static final String BETA_URL = "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/beta.json";
|
2018-12-02 09:47:57 +00:00
|
|
|
public static final String REPO_URL = "https://api.github.com/users/Magisk-Modules-Repo/repos?per_page=100&sort=pushed";
|
2017-11-05 20:41:23 +00:00
|
|
|
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";
|
2018-10-28 06:48:01 +00:00
|
|
|
public static final String PAYPAL_URL = "https://www.paypal.me/topjohnwu";
|
2018-08-30 09:05:29 +00:00
|
|
|
public static final String PATREON_URL = "https://www.patreon.com/topjohnwu";
|
|
|
|
public static final String TWITTER_URL = "https://twitter.com/topjohnwu";
|
2018-07-04 19:15:10 +00:00
|
|
|
public static final String XDA_THREAD = "http://forum.xda-developers.com/showthread.php?t=3432382";
|
2018-07-18 20:18:08 +00:00
|
|
|
public static final String SOURCE_CODE_URL = "https://github.com/topjohnwu/Magisk";
|
2017-11-05 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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";
|
2018-06-13 20:30:24 +00:00
|
|
|
public static final String SU_MANAGER = "requester";
|
2017-11-05 20:41:23 +00:00
|
|
|
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";
|
2018-01-11 17:53:49 +00:00
|
|
|
public static final String SU_FINGERPRINT = "su_fingerprint";
|
2017-11-05 20:41:23 +00:00
|
|
|
|
|
|
|
// intents
|
|
|
|
public static final String OPEN_SECTION = "section";
|
2018-12-02 09:47:57 +00:00
|
|
|
public static final String INTENT_SET_NAME = "filename";
|
2017-11-05 20:41:23 +00:00
|
|
|
public static final String INTENT_SET_LINK = "link";
|
|
|
|
public static final String FLASH_ACTION = "action";
|
|
|
|
public static final String FLASH_SET_BOOT = "boot";
|
2018-12-02 21:53:00 +00:00
|
|
|
public static final String BROADCAST_MANAGER_UPDATE = "manager_update";
|
|
|
|
public static final String BROADCAST_REBOOT = "reboot";
|
2017-11-05 21:36:20 +00:00
|
|
|
|
2017-11-05 20:41:23 +00:00
|
|
|
// others
|
2018-02-19 16:39:17 +00:00
|
|
|
public static final String CHECK_UPDATES = "check_update";
|
2017-11-05 20:41:23 +00:00
|
|
|
public static final String UPDATE_CHANNEL = "update_channel";
|
2017-11-19 19:09:08 +00:00
|
|
|
public static final String CUSTOM_CHANNEL = "custom_channel";
|
2017-11-05 20:41:23 +00:00
|
|
|
public static final String BOOT_FORMAT = "boot_format";
|
|
|
|
public static final String UPDATE_SERVICE_VER = "update_service_version";
|
2017-12-02 18:48:21 +00:00
|
|
|
public static final String APP_VER = "app_version";
|
2017-11-05 20:41:23 +00:00
|
|
|
public static final String MAGISKHIDE = "magiskhide";
|
|
|
|
public static final String HOSTS = "hosts";
|
2017-12-02 20:15:17 +00:00
|
|
|
public static final String COREONLY = "disable";
|
2017-11-05 20:41:23 +00:00
|
|
|
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";
|
2017-12-26 17:07:33 +00:00
|
|
|
public static final String REPO_ORDER = "repo_order";
|
2017-11-05 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static class Value {
|
|
|
|
public static final int STABLE_CHANNEL = 0;
|
|
|
|
public static final int BETA_CHANNEL = 1;
|
2017-11-19 19:09:08 +00:00
|
|
|
public static final int CUSTOM_CHANNEL = 2;
|
2017-11-05 20:41:23 +00:00
|
|
|
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 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";
|
2018-07-29 07:45:04 +00:00
|
|
|
public static final String FLASH_INACTIVE_SLOT = "slot";
|
2018-06-26 21:58:56 +00:00
|
|
|
public static final String UNINSTALL = "uninstall";
|
2017-11-05 20:41:23 +00:00
|
|
|
public static final int[] timeoutList = {0, -1, 10, 20, 30, 60};
|
2017-12-26 17:07:33 +00:00
|
|
|
public static final int ORDER_NAME = 0;
|
|
|
|
public static final int ORDER_DATE = 1;
|
2017-11-05 20:41:23 +00:00
|
|
|
}
|
|
|
|
}
|