Skip to content

Commit

Permalink
Add Java source & target compatibility config for preinstrumented
Browse files Browse the repository at this point in the history
Signed-off-by: utzcoz <utzcoz@outlook.com>
  • Loading branch information
utzcoz committed Oct 8, 2022
1 parent b88b1d2 commit c81a266
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion preinstrumented/build.gradle
Expand Up @@ -11,6 +11,11 @@ application {
mainClassName = javaMainClass
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

dependencies {
implementation "com.google.guava:guava:$guavaJREVersion"
implementation project(":sandbox")
Expand Down Expand Up @@ -124,4 +129,4 @@ clean.doFirst {
AndroidSdk.ALL_SDKS.each { androidSdk ->
delete "${buildDir}/${androidSdk.preinstrumentedJarFileName}"
}
}
}

0 comments on commit c81a266

Please sign in to comment.