Skip to content

Commit f8bc7e9

Browse files
committed
Build: Remove unnecessary kotlin options jvm target config from all mods
This configuration already exist on the root level 'build.gradle' configuration file, which applies it by default to all modules within the 'tasks.withType(KotlinCompile).all { ... }' block.
1 parent ac60a5b commit f8bc7e9

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

libs/annotations/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,3 @@ plugins {
55
repositories {
66
mavenCentral()
77
}
8-
compileKotlin {
9-
kotlinOptions {
10-
jvmTarget = JavaVersion.VERSION_1_8
11-
}
12-
}

libs/image-editor/build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ android {
1818
vectorDrawables.useSupportLibrary = true
1919
}
2020

21-
kotlinOptions {
22-
jvmTarget = JavaVersion.VERSION_1_8
23-
}
24-
2521
sourceSets {
2622
main.java.srcDirs += 'src/main/kotlin'
2723
test.java.srcDirs += 'src/test/kotlin'

0 commit comments

Comments
 (0)