mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 03:17:03 +05:30
build: update all dependencies
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
bab3a53a53
commit
a2eb97e504
4 changed files with 34 additions and 34 deletions
32
build.gradle
32
build.gradle
|
@ -1,22 +1,22 @@
|
|||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
buildscript {
|
||||
ext {
|
||||
compose_version = '1.0.0-alpha03'
|
||||
coroutines_version = '1.3.9'
|
||||
dagger_version = '2.29.1'
|
||||
hilt_androidx_version = '1.0.0-alpha02'
|
||||
hilt_dagger_version = '2.29-alpha'
|
||||
kotlin_version = '1.4.10'
|
||||
lifecycle_version = '2.3.0-alpha07'
|
||||
moshi_version = '1.9.3'
|
||||
room_version = '2.3.0-alpha02'
|
||||
compose_version = "1.0.0-alpha04"
|
||||
coroutines_version = "1.3.9"
|
||||
dagger_version = "2.29.1"
|
||||
hilt_androidx_version = "1.0.0-alpha02"
|
||||
hilt_dagger_version = "2.29.1-alpha"
|
||||
kotlin_version = "1.4.10"
|
||||
lifecycle_version = "2.3.0-beta01"
|
||||
moshi_version = "1.9.3"
|
||||
room_version = "2.3.0-alpha02"
|
||||
}
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath "com.android.tools.build:gradle:4.2.0-alpha12"
|
||||
classpath "com.android.tools.build:gradle:4.2.0-alpha13"
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_dagger_version"
|
||||
}
|
||||
|
@ -34,12 +34,12 @@ subprojects {
|
|||
google()
|
||||
jcenter()
|
||||
}
|
||||
if (name == 'app') {
|
||||
apply plugin: 'com.android.application'
|
||||
if (name == "app") {
|
||||
apply plugin: "com.android.application"
|
||||
} else {
|
||||
apply plugin: 'com.android.library'
|
||||
apply plugin: "com.android.library"
|
||||
}
|
||||
apply plugin: 'kotlin-android'
|
||||
apply plugin: "kotlin-android"
|
||||
android {
|
||||
compileSdkVersion 30
|
||||
|
||||
|
@ -63,7 +63,7 @@ subprojects {
|
|||
}
|
||||
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
|
||||
kotlinOptions {
|
||||
jvmTarget = '1.8'
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ task clean(type: Delete) {
|
|||
|
||||
tasks {
|
||||
wrapper {
|
||||
gradleVersion = "6.7-rc-2"
|
||||
gradleVersion = "6.7-rc-3"
|
||||
distributionType = Wrapper.DistributionType.ALL
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue