Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
X1nto committed Sep 24, 2021
1 parent 6170da7 commit 656f7e5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
22 changes: 12 additions & 10 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ android {
// To inline the bytecode built with JVM target 1.8 into
// bytecode that is being built with JVM target 1.6. (e.g. navArgs)
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

composeOptions {
kotlinCompilerExtensionVersion = "1.0.1"
kotlinCompilerExtensionVersion = "1.1.0-alpha04"
}

}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "11"
freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}
}
Expand Down Expand Up @@ -84,7 +84,7 @@ dependencies {
implementation("com.google.android.material:material:1.4.0")
implementation("androidx.browser:browser:1.3.0")

val composeVersion = "1.0.1"
val composeVersion = "1.1.0-alpha04"
implementation("androidx.compose.compiler:compiler:$composeVersion")
implementation("androidx.compose.foundation:foundation:$composeVersion")
implementation("androidx.compose.material:material-icons-core:$composeVersion")
Expand All @@ -99,18 +99,20 @@ dependencies {
implementation("androidx.preference:preference-ktx:1.1.1")

implementation("androidx.activity:activity-compose:1.3.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.4.0-alpha03")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07")

val accompanistVersion = "0.17.0"
val lifecycleVersion = "2.4.0-beta01"
implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycleVersion")

val accompanistVersion = "0.18.0"
implementation("com.google.accompanist:accompanist-navigation-animation:$accompanistVersion")
implementation("com.google.accompanist:accompanist-placeholder-material:$accompanistVersion")
implementation("com.google.accompanist:accompanist-swiperefresh:$accompanistVersion")
implementation("com.google.accompanist:accompanist-systemuicontroller:$accompanistVersion")

implementation("io.coil-kt:coil-compose:1.3.0")
implementation("io.coil-kt:coil-compose:1.3.2")

implementation("com.github.skydoves:orchestra-colorpicker:1.0.7")
implementation("com.github.skydoves:orchestra-colorpicker:1.1.0")

val koinVersion = "3.1.2"
implementation("io.insert-koin:koin-android:$koinVersion")
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
}

dependencies {
classpath("com.android.tools.build:gradle:7.0.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
classpath("com.android.tools.build:gradle:7.0.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30")
}
}

Expand Down

0 comments on commit 656f7e5

Please sign in to comment.