forked from kwattsorg/adbshellkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (36 loc) · 1.5 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
buildscript {
System.properties['com.android.build.gradle.overrideVersionCheck'] = 'true'
repositories {
jcenter()
google()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
//https://developer.android.com/studio/releases/gradle-plugin
classpath 'com.android.tools.build:gradle:4.2.2'
//https://firebase.google.com/support/release-notes/android
classpath 'com.google.gms:google-services:4.3.3'
//https://docs.fabric.io/android/changelog.html#fabric-gradle-plugin
//https://firebase.google.com/support/release-notes/android#firebase-gradle_plugins_2019-05-07
classpath 'com.google.firebase:firebase-plugins:2.0.0'
//https://github.com/Triple-T/gradle-play-publisher/releases
//classpath 'com.github.triplet.gradle:play-publisher:2.1.1'
//https://mvnrepository.com/artifact/com.google.android.gms/strict-version-matcher-plugin
classpath 'com.google.android.gms:strict-version-matcher-plugin:1.2.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.3.0'
}
}
allprojects {
repositories {
google()
jcenter()
flatDir { dirs 'libs' }
maven { url "https://jitpack.io" }
maven { url "https://fusesource.github.io/jansi/" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}