Files
TichuCounter/build.gradle
Fabian 6856f7abd7
All checks were successful
Build Android / build (push) Successful in 2m49s
Build Android / build (pull_request) Successful in 2m46s
Target SDK 36
2025-07-04 22:15:35 +02:00

29 lines
810 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.9.24"
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.11.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.51.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
id 'com.google.devtools.ksp' version '1.9.24-1.0.20' apply false
}
allprojects {
repositories {
google()
mavenCentral()
}
}