-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
32 lines (28 loc) · 836 Bytes
/
build.gradle.kts
File metadata and controls
32 lines (28 loc) · 836 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
31
32
buildscript {
repositories {
google()
mavenCentral()
maven { url = uri("https://plugins.gradle.org/m2/") } // ktlint
}
dependencies {
classpath("com.android.tools.build:gradle:8.13.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0")
classpath("org.jlleitschuh.gradle:ktlint-gradle:12.1.2")
classpath("com.google.gms:google-services:4.4.4")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.9")
}
}
subprojects {
apply(plugin = "org.jlleitschuh.gradle.ktlint")
// Optionally configure plugin
configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> {
debug.set(false)
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}