29 lines
773 B
Groovy
29 lines
773 B
Groovy
buildscript {
|
|
ext.kotlin_version = '2.2.10'
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:9.1.0'
|
|
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
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.google.dagger.hilt.android' version '2.59' apply false
|
|
id 'org.jetbrains.kotlin.android' version '2.3.20' apply false
|
|
id 'com.google.devtools.ksp' version '2.3.5' apply false
|
|
id 'org.jetbrains.kotlin.plugin.compose' version '2.3.20' apply false
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|