-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (54 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Sdk and tools
compiledSdkVersion = 28
minSdkVersion = 16
targetSdkVersion = 28
// App dependencies
appCompatVersion = '1.1.0-beta01'
butterKnifeVersion = '10.1.0'
customTabsVersion = '28.0.0'
crashlyticsVersion = '2.10.1'
espressoVersion = '3.3.0-alpha01'
firebaseVersion = '17.0.0'
gsonVersion = '2.8.5'
junitVersion = '4.13-beta-3'
junitExtVersion = '1.1.2-alpha01'
leakCanaryVersion = '2.0-alpha-2'
lifecycleVersion = '2.2.0-alpha01'
materialVersion = '1.1.0-alpha07'
picassoVersion = '2.71828'
preferenceVersion = '1.1.0-beta01'
recyclerViewVersion = '1.1.0-alpha06'
retrofitVersion = '2.6.0'
roomVersion = '2.1.0'
supportLibraryVersion = '1.0.0'
supportEmoji = '28.0.0'
}
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// Google Services plugin
classpath 'com.google.gms:google-services:4.2.0'
// Crashlytics plugin
classpath 'io.fabric.tools:gradle:1.29.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}