1
0
mirror of https://gitlab.shinice.net/pixeldroid/PixelDroid synced 2024-12-27 07:26:24 +01:00
PixelDroid-App-Android/build.gradle
2024-11-30 21:34:37 +00:00

33 lines
853 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '2.0.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.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
}
}
plugins {
id 'com.google.devtools.ksp' version '2.0.21-1.0.26' apply false
id("com.google.dagger.hilt.android") version "2.52" apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}