chore(deps): upgrade to Kotlin 1.8.0

This commit is contained in:
Harsh Shandilya 2023-01-11 17:52:24 +05:30
parent 01cb8e9078
commit d6c5591040
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View File

@ -39,7 +39,7 @@
"androidx.compose.compiler:compiler"
],
"registryUrls": [
"https://maven.google.com/"
"https://androidx.dev/storage/compose-compiler/repository/"
]
}
],

View File

@ -3,11 +3,11 @@ agp = "8.0.0-alpha11"
androidxActivity = "1.7.0-alpha02"
bouncycastle = "1.72"
# @keep used for kotlinCompilerExtensionVersion
composeCompiler = "1.4.0-alpha02"
composeCompiler = "1.4.0-dev-k1.8.0-33c0ad36f83"
coroutines = "1.6.4"
flowbinding = "1.2.0"
hilt = "2.44.2"
kotlin = "1.7.21"
kotlin = "1.8.0"
leakcanary = "2.10"
lifecycle = "2.6.0-alpha03"

View File

@ -78,7 +78,6 @@ dependencyResolutionManagement {
includeGroup("androidx.cardview")
includeGroup("androidx.collection")
includeGroup("androidx.compose.animation")
includeGroup("androidx.compose.compiler")
includeGroup("androidx.compose.foundation")
includeGroup("androidx.compose.material")
includeGroup("androidx.compose.material3")
@ -155,6 +154,10 @@ dependencyResolutionManagement {
forRepository { maven("https://storage.googleapis.com/r8-releases/raw") }
filter { includeModule("com.android.tools", "r8") }
}
exclusiveContent {
forRepository { maven("https://androidx.dev/storage/compose-compiler/repository/") }
filter { includeGroup("androidx.compose.compiler") }
}
mavenCentral()
}
}