diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-12-23 17:52:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-23 12:22:17 +0000 |
commit | 736f84acb4e17cc651d82e768b2bd393a815c0b1 (patch) | |
tree | 194cc8431c1349bd4c6c1c1190f8dacd81968cdf /build-logic/android-plugins | |
parent | cd61f58d44dcc00a31b8bf97ef74d84e5eb1cfbd (diff) |
Misc cleanups and fixes (#1611)
Diffstat (limited to 'build-logic/android-plugins')
-rw-r--r-- | build-logic/android-plugins/build.gradle.kts | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/build-logic/android-plugins/build.gradle.kts b/build-logic/android-plugins/build.gradle.kts index e013e9f8..8c4315dd 100644 --- a/build-logic/android-plugins/build.gradle.kts +++ b/build-logic/android-plugins/build.gradle.kts @@ -13,13 +13,15 @@ plugins { `kotlin-dsl-precompiled-script-plugins` } -tasks.withType<JavaCompile>().configureEach { - sourceCompatibility = JavaVersion.VERSION_11.toString() - targetCompatibility = JavaVersion.VERSION_11.toString() -} +afterEvaluate { + tasks.withType<JavaCompile>().configureEach { + sourceCompatibility = JavaVersion.VERSION_11.toString() + targetCompatibility = JavaVersion.VERSION_11.toString() + } -tasks.withType<KotlinCompile>().configureEach { - kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + tasks.withType<KotlinCompile>().configureEach { + kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + } } gradlePlugin { |