NumberHub/build.gradle.kts
Sad Ellie 40b6e9c147 Modules modules modules
App is now made of modules.

Updated README.md to show modules.

P.S. Commits are squashed.

basically, modules
2023-01-12 21:24:59 +04:00

22 lines
556 B
Plaintext

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.com.google.gms)
classpath(libs.com.google.firebase)
}
}
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.android.gradlePlugin) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.hilt) apply false
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}