diff --git a/appveyor.yml b/appveyor.yml index f9ac06d6..0cf7a659 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '0.5.0.0 ({build})' +version: '0.5.0.5 ({build})' environment: ANDROID_HOME: C:\android-sdk-windows diff --git a/edxp-common/src/main/java/com/elderdrivers/riru/edxp/deopt/InlinedMethodCallers.java b/edxp-common/src/main/java/com/elderdrivers/riru/edxp/deopt/InlinedMethodCallers.java index 6a6a3385..093942f6 100644 --- a/edxp-common/src/main/java/com/elderdrivers/riru/edxp/deopt/InlinedMethodCallers.java +++ b/edxp-common/src/main/java/com/elderdrivers/riru/edxp/deopt/InlinedMethodCallers.java @@ -32,8 +32,10 @@ public class InlinedMethodCallers { private static final String[][] BOOT_IMAGE = { // callers of Application#attach(Context) {"android.app.Instrumentation", "newApplication", "(Ljava/lang/ClassLoader;Ljava/lang/String;Landroid/content/Context;)Landroid/app/Application;"}, + {"android.app.Instrumentation", "newApplication", "(Ljava/lang/ClassLoader;Landroid/content/Context;)Landroid/app/Application;"}, }; + // TODO deprecate this private static final String[][] BOOT_IMAGE_FOR_MIUI_RES = { // for MIUI resources hooking {"android.content.res.MiuiResources", "init", "(Ljava/lang/String;)V"}, diff --git a/edxp-core/build.gradle b/edxp-core/build.gradle index 506e1a1e..0ad8ac0b 100644 --- a/edxp-core/build.gradle +++ b/edxp-core/build.gradle @@ -4,7 +4,7 @@ import org.gradle.internal.os.OperatingSystem apply plugin: 'com.android.library' // Values set here will be overriden by AppVeyor, feel free to modify during development. -def buildVersionName = 'v0.5.0.0' +def buildVersionName = 'v0.5.0.5' def buildVersionCode = 233 if (System.env.APPVEYOR_BUILD_VERSION != null) {