Fix SystemServer class not found
This commit is contained in:
parent
18bd0a8c0f
commit
d05bd0fe19
|
|
@ -124,7 +124,8 @@ public abstract class BaseRouter implements Router {
|
|||
public void startSystemServerHook() {
|
||||
ClassLoader classLoader = BaseRouter.class.getClassLoader();
|
||||
if (useXposedApi) {
|
||||
XposedHelpers.findAndHookMethod(StartBootstrapServicesHooker.className, classLoader,
|
||||
XposedHelpers.findAndHookMethod(StartBootstrapServicesHooker.className,
|
||||
SystemMainHooker.systemServerCL,
|
||||
StartBootstrapServicesHooker.methodName, new StartBootstrapServices());
|
||||
} else {
|
||||
HookMain.doHookDefault(
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@ import org.gradle.internal.os.OperatingSystem
|
|||
|
||||
apply plugin: 'com.android.library'
|
||||
|
||||
version "v0.4.3.2_alpha"
|
||||
version "v0.4.3.3_alpha"
|
||||
|
||||
ext {
|
||||
versionCode = "4320"
|
||||
versionCode = "4330"
|
||||
module_name = "EdXposed"
|
||||
jar_dest_dir = "${projectDir}/template_override/system/framework/"
|
||||
is_windows = OperatingSystem.current().isWindows()
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/system/bin/sh
|
||||
|
||||
EDXP_VERSION="0.4.3.2_alpha (4320)"
|
||||
EDXP_VERSION="0.4.3.3_alpha (4330)"
|
||||
ANDROID_SDK=`getprop ro.build.version.sdk`
|
||||
BUILD_DESC=`getprop ro.build.description`
|
||||
PRODUCT=`getprop ro.build.product`
|
||||
|
|
|
|||
Loading…
Reference in New Issue