mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-10-15 19:50:47 +00:00
Minor changes
This commit is contained in:
2
shared/proguard-rules.pro
vendored
2
shared/proguard-rules.pro
vendored
@@ -20,6 +20,6 @@
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
-keepclassmembers class * implements javax.net.ssl.SSLSocketFactory {
|
||||
-keepclassmembers class * extends javax.net.ssl.SSLSocketFactory {
|
||||
** delegate;
|
||||
}
|
||||
|
@@ -50,7 +50,7 @@ public class DynAPK {
|
||||
|
||||
public static Object pack(Data data) {
|
||||
Object[] arr = new Object[2];
|
||||
arr[STUB_VERSION_ENTRY] = STUB_VERSION;
|
||||
arr[STUB_VERSION_ENTRY] = data.version;
|
||||
arr[COMPONENT_MAP] = data.componentMap;
|
||||
return arr;
|
||||
}
|
||||
@@ -64,7 +64,7 @@ public class DynAPK {
|
||||
}
|
||||
|
||||
public static class Data {
|
||||
public int version;
|
||||
public int version = STUB_VERSION;
|
||||
public Map<String, String> componentMap;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user