File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
src/main/kotlin/io/embrace/internal Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ gradlePlugin {
3333
3434// ensure the Kotlin + Java compilers both use the same language level.
3535project.tasks.withType(JavaCompile ::class .java).configureEach {
36- sourceCompatibility = JavaVersion .VERSION_11 .toString()
37- targetCompatibility = JavaVersion .VERSION_11 .toString()
36+ sourceCompatibility = JavaVersion .VERSION_1_8 .toString()
37+ targetCompatibility = JavaVersion .VERSION_1_8 .toString()
3838}
3939
4040// ensure the Kotlin + Java compilers both use the same language level.
4141kotlin {
4242 compilerOptions {
43- jvmTarget.set(JvmTarget .JVM_11 )
43+ jvmTarget.set(JvmTarget .JVM_1_8 )
4444 }
4545}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ fun LibraryExtension.configureAndroidCompileOptions() {
88 defaultConfig.minSdk = 21
99
1010 compileOptions {
11- sourceCompatibility = JavaVersion .VERSION_11
12- targetCompatibility = JavaVersion .VERSION_11
11+ sourceCompatibility = JavaVersion .VERSION_1_8
12+ targetCompatibility = JavaVersion .VERSION_1_8
1313 }
1414}
Original file line number Diff line number Diff line change @@ -33,5 +33,5 @@ abstract class EmbraceBuildLogicExtension(objectFactory: ObjectFactory) {
3333 * The JVM target for this module.
3434 */
3535 val jvmTarget: Property <JavaVersion > =
36- objectFactory.property(JavaVersion ::class .java).convention(JavaVersion .VERSION_11 )
36+ objectFactory.property(JavaVersion ::class .java).convention(JavaVersion .VERSION_1_8 )
3737}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ org.gradle.caching=true
55org.gradle.configuration-cache =true
66org.gradle.configuration-cache.problems =fail
77org.gradle.configuration-cache.parallel =true
8- version =7.9.0
8+ version =7.9.1
99android.useAndroidX =true
1010android.experimental.enableArtProfiles =true
1111android.defaults.buildfeatures.buildconfig =false
You can’t perform that action at this time.
0 commit comments