mirror of https://github.com/Ashinch/ReadYou.git
20 lines
524 B
Groovy
20 lines
524 B
Groovy
buildscript {
|
|
ext {
|
|
compose_version = '1.2.0-alpha06'
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.28-alpha'
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.0-alpha01"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '7.1.1' apply false
|
|
id 'com.android.library' version '7.1.1' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |