28 lines
871 B
Plaintext
28 lines
871 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("com.squareup:javapoet:1.13.0")
|
|
force("org.jetbrains.kotlin:kotlin-stdlib:2.0.21")
|
|
force("org.jetbrains.kotlin:kotlin-stdlib-common:2.0.21")
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
alias(libs.plugins.kotlin.kapt) apply false
|
|
}
|
|
|
|
allprojects {
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("com.squareup:javapoet:1.13.0")
|
|
force("org.jetbrains.kotlin:kotlin-stdlib:2.0.21")
|
|
force("org.jetbrains.kotlin:kotlin-stdlib-common:2.0.21")
|
|
force("org.jetbrains.kotlin:kotlin-reflect:2.0.21")
|
|
}
|
|
}
|
|
}
|