forked from timschneeb/RootlessJamesDSP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
25 lines (23 loc) · 830 Bytes
/
build.gradle.kts
File metadata and controls
25 lines (23 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral() // Google's Maven repository
gradlePluginPortal()
maven("https://jitpack.io")
}
dependencies {
classpath("com.android.tools.build:gradle:8.7.3")
classpath("com.google.gms:google-services:4.4.2")
classpath("com.google.firebase:firebase-crashlytics-gradle:3.0.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0")
}
}
plugins {
id("com.android.application") version "8.7.3" apply false
id("com.android.library") version "8.7.3" apply false
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}