We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434f338 commit 10e11efCopy full SHA for 10e11ef
1 file changed
app/src/main/java/com/fox2code/mmm/installer/InstallerInitializer.java
@@ -59,11 +59,19 @@ public static String peekMagiskPath() {
59
return InstallerInitializer.MAGISK_PATH;
60
}
61
62
+ /**
63
+ * Note: All mirrors are read only on latest magisk
64
+ */
65
public static String peekMirrorPath() {
66
return InstallerInitializer.MAGISK_PATH == null ? null :
67
InstallerInitializer.MAGISK_PATH + "/.magisk/mirror";
68
69
70
71
+ * Note: Used to detect which modules are currently loaded.
72
+ * <p>
73
+ * For read/write only "/data/adb/modules" should be used
74
75
public static String peekModulesPath() {
76
77
InstallerInitializer.MAGISK_PATH + "/.magisk/modules";
0 commit comments