PixelDroid-App-Android/build.gradle

33 lines
853 B
Groovy
Raw Normal View History

2020-02-28 00:36:26 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2023-12-13 11:11:35 +01:00
ext.kotlin_version = '1.9.20'
2020-02-28 00:36:26 +01:00
repositories {
google()
2021-03-16 00:48:08 +01:00
mavenCentral()
2020-02-28 00:36:26 +01:00
}
dependencies {
2024-03-29 09:03:48 +01:00
classpath 'com.android.tools.build:gradle:8.3.1'
2020-02-28 17:08:54 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020-02-28 00:36:26 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2023-12-13 11:11:35 +01:00
plugins {
id 'com.google.devtools.ksp' version '1.9.20-1.0.14' apply false
2024-02-10 18:43:07 +01:00
id("com.google.dagger.hilt.android") version "2.50" apply false
2023-12-13 11:11:35 +01:00
}
2020-02-28 00:36:26 +01:00
allprojects {
repositories {
google()
2021-03-16 00:48:08 +01:00
mavenCentral()
maven { url "https://jitpack.io" }
2020-02-28 00:36:26 +01:00
}
}
tasks.register('clean', Delete) {
2020-02-28 00:36:26 +01:00
delete rootProject.buildDir
}