Thorium-android-app/build.gradle

26 lines
770 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-04-30 13:20:58 +02:00
compose_version = '1.2.0-alpha08'
exo_player_version = '2.17.1'
2022-04-30 14:47:44 +02:00
koltin_version = '1.6.20'
2022-04-30 13:20:58 +02:00
room_version = '2.4.2'
2022-02-04 14:06:07 +01:00
}
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-04-30 13:20:58 +02:00
classpath 'com.android.tools.build:gradle:7.1.3'
2022-02-04 17:06:26 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$koltin_version"
2022-02-04 14:06:07 +01:00
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
}