-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (37 loc) · 1.3 KB
/
build.gradle
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
buildscript {
ext.kotlin_version = '1.3.41'
repositories {
google()
jcenter()
// https://firebase.google.com/docs/crashlytics/get-started
maven { url 'https://maven.fabric.io/public' }
// https://github.com/JLLeitschuh/ktlint-gradle
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// https://firebase.google.com/docs/android/setup
classpath 'com.google.gms:google-services:4.3.0'
// https://firebase.google.com/docs/crashlytics/get-started
classpath 'io.fabric.tools:gradle:1.29.0'
// https://firebase.google.com/docs/perf-mon/get-started-android
classpath 'com.google.firebase:perf-plugin:1.2.1'
// https://docs.deploygate.com/docs/gradle-plugin
classpath 'com.deploygate:gradle:2.0.1'
// https://github.com/ben-manes/gradle-versions-plugin
classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0'
}
}
plugins {
id "org.jlleitschuh.gradle.ktlint" version "8.1.0"
}
plugins {
id "io.gitlab.arturbosch.detekt" version "1.0.0-RC16"
}
allprojects {
repositories {
google()
jcenter()
}
}