Thorium-android-app/build.gradle

24 lines
689 B
Groovy
Raw Normal View History

2018-03-03 01:10:13 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2022-02-04 14:06:07 +01:00
ext {
2022-02-04 16:53:04 +01:00
compose_version = '1.2.0-alpha02'
2022-02-04 14:06:07 +01:00
room_version = "2.4.1"
}
2018-03-03 01:10:13 +01:00
repositories {
google()
2022-01-01 01:53:43 +01:00
mavenCentral()
2018-03-03 01:10:13 +01:00
}
dependencies {
2022-02-04 14:06:07 +01:00
classpath 'com.android.tools.build:gradle:7.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.38.1"
2018-03-03 01:10:13 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2022-02-04 14:06:07 +01:00
}