Skip to content

Commit

Permalink
Update kotlin to 1.7.10 (and related libraries)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstyl committed Nov 14, 2022
1 parent 4e21157 commit 9975431
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
1 change: 0 additions & 1 deletion library-coroutines/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"
android {
kotlinOptions {
jvmTarget = javaVersion
useIR = true
freeCompilerArgs = [
"-Xexplicit-api=strict"
]
Expand Down
1 change: 0 additions & 1 deletion library-reactive/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"
android {
kotlinOptions {
jvmTarget = javaVersion
useIR = true
freeCompilerArgs = [
"-Xexplicit-api=strict"
]
Expand Down
1 change: 0 additions & 1 deletion library-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"
android {
kotlinOptions {
jvmTarget = javaVersion
useIR = true
freeCompilerArgs = [
"-Xexplicit-api=strict"
]
Expand Down
1 change: 0 additions & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"
android {
kotlinOptions {
jvmTarget = javaVersion
useIR = true
freeCompilerArgs = [
"-Xexplicit-api=strict"
]
Expand Down
3 changes: 1 addition & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'dagger.hilt.android.plugin'
}

def composeVersion = '1.0.5'
def composeVersion = '1.3.1'
android {
compileSdk androidCompileSdkVersion

Expand Down Expand Up @@ -34,7 +34,6 @@ android {
}
kotlinOptions {
jvmTarget = javaVersion
useIR = true
freeCompilerArgs += "-Xopt-in=androidx.compose.material.ExperimentalMaterialApi"
freeCompilerArgs += "-Xopt-in=coil.annotation.ExperimentalCoilApi"
}
Expand Down
12 changes: 6 additions & 6 deletions versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ ext {
libraryVersionName = "${majorVersion}.${minVersion}.${patchVersion}"
libraryVersionCode = majorVersion * 1000 + minVersion * 100 + patchVersion

javaVersion = JavaVersion.VERSION_11
javaVersion = JavaVersion.VERSION_1_8

androidCompileSdkVersion = 33
androidMinSdkVersion = 14

r8Version = '3.0.73'
gradlePluginVersion = '7.1.1'
kotlinVersion = '1.5.31'
coroutinesVersion = '1.6.0'
hiltVersion = '2.40.5'
r8Version = '3.3.75'
gradlePluginVersion = '7.3.1'
kotlinVersion = '1.7.10'
coroutinesVersion = '1.6.4'
hiltVersion = '2.42'
junitVersion = '4.13.2'
testRunnerVersion = '1.4.0'
testRulesVersion = '1.4.0'
Expand Down

0 comments on commit 9975431

Please sign in to comment.