Biblib/build.gradle
Thomas Andres Gomez 2a69b75d9d Refactor the Authentication Screen
introduction of new theming / navigation / animation.
2022-04-20 23:14:32 +02:00

21 lines
No EOL
526 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = "1.6.10"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.40.5"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}