From a7b097a337d66e34437c08d9c81ac2ffb696e4cb Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Tue, 5 Sep 2023 11:46:49 -0700 Subject: [PATCH] Remove ASM-related hack in build config (#824) I'm guessing this was necessary for building on Java 8, but now everything works without it. --- build.gradle | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build.gradle b/build.gradle index 704951e51c..af60cc9bee 100644 --- a/build.gradle +++ b/build.gradle @@ -24,14 +24,6 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:7.3.0' classpath 'com.vanniktech:gradle-maven-publish-plugin:0.25.3' - // This restriction is needed due to our mix of Android and Java modules; - // without it, the build fails with a weird error. - // See https://stackoverflow.com/questions/70217853/how-to-include-android-project-in-a-gradle-multi-project-build - classpath('org.ow2.asm:asm') { - version { - strictly '9.2' - } - } } } plugins {