From a1ddc80cb7aba131fc534c03a4ff23f48a068d99 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 24 Mar 2022 09:30:53 +0100 Subject: [PATCH] update to dexlib2 2.5.2 --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 467b362..ff1bdc5 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ plugins { id 'signing' } -def dexlib2Version = '2.3.4' +def dexlib2Version = '2.5.2' def multidexlib2VersionSuffix = '.r2' group = 'com.github.lanchon.dexpatcher' @@ -23,7 +23,7 @@ version = dexlib2Version + multidexlib2VersionSuffix ext.mainArtifact = 'multidexlib2' ext.artifactName = mainArtifact -sourceCompatibility = '1.7' +sourceCompatibility = '1.8' def jdk = findProperty('JDK7_HOME') as String ?: '/usr/lib/jvm/java-7-openjdk-amd64' def jdk_rt = new File(jdk, 'jre/lib/rt.jar') if (jdk_rt.exists()) compileJava.options.bootstrapClasspath = files(jdk_rt) @@ -34,6 +34,7 @@ repositories { dependencies { api 'org.smali:dexlib2:' + dexlib2Version + api 'com.google.guava:guava:31.1-jre' } apply from: 'configure-artifacts.gradle'