-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (27 loc) · 933 Bytes
/
build.gradle
File metadata and controls
30 lines (27 loc) · 933 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
26
27
28
29
30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
// ext {
// // Use the following booleans to configure the usage of some APIs
// useMapbox = true
// useFirebase = false
// }
}
plugins {
alias(libs.plugins.androidApplication) apply false
alias(libs.plugins.kotlinAndroid) apply false
alias(libs.plugins.kotlinSerialization) apply false
alias(libs.plugins.aboutlibraries) apply false
alias(libs.plugins.kotlinKapt) apply false
alias(libs.plugins.composeCompiler) apply false
alias(libs.plugins.kotlin.parcelize) apply false
alias(libs.plugins.googleServices) apply false
alias(libs.plugins.firebaseCrashlytics) apply false
}
task clean(type: Delete) {
delete rootProject.getLayout().buildDirectory
}