mirror of
https://github.com/dzeiocom/crashhandler.git
synced 2025-04-22 10:52:16 +00:00
24 lines
662 B
Plaintext
24 lines
662 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.4.2")
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.android.application") version "7.4.2" apply false
|
|
id("com.android.library") version "7.4.2" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.7.0" apply false
|
|
}
|
|
|
|
task("clean") {
|
|
delete(rootProject.buildDir)
|
|
delete(project.buildDir)
|
|
}
|