* kotlin 1.8.10 -> 1.8.22 * kotlinx-coroutines-android 1.6.4 -> 1.7.2 * kotlinx-serialization-json 1.5.0 -> 1.5.1 * core-ktx 1.10.0 -> 1.10.1 * core-splashscreen 1.0.0 -> 1.0.1 * navigation-fragment-ktx 2.5.3 -> 2.6.0 * navigation-ui-ktx 2.5.3 -> 2.6.0 * security-crypto 1.1.0-alpha05 -> 1.1.0-alpha06 * material 1.8.0 -> 1.9.0 * ktor 2.2.4 -> 2.3.2 * exo-player 2.18.5 -> 2.18.7 * agp 8.0.0 -> 8.0.2
28 lines
714 B
Groovy
28 lines
714 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext.kotlin_version = "1.8.22"
|
|
ext.ktor_version = "2.3.2"
|
|
ext.exo_version = "2.18.7"
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.0.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |