forked from openfoodfacts/openfoodfacts-androidapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
75 lines (57 loc) · 1.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
classpath 'com.github.timfreiheit:ResourcePlaceholdersPlugin:0.2'
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
google()
}
}
ext {
supportLibraryVersion = '27.1.0'
multidexVersion = '1.0.3'
daggerVersion = '2.13'
rxVersion = '2.1.7'
rxAndroidVersion = '2.0.1'
retrofitVersion = '2.3.0'
okhttpVersion = '3.9.0'
gsonVersion = '2.8.2'
jacksonVersion = '2.8.9'
greenDaoVersion = '3.2.0'
picassoVersion = '2.5.2'
//DO NOT UPDATE : saveInAppExternalFilesDir() removed
easyImageVersion = '1.4.0'
butterknifeVersion = '8.8.1'
openCsvVersion = '4.1'
qrScannerVersion = '1.9.8'
htmlDomVersion = '1.11.2'
apacheCollectionsVersion = '4.1'
apacheValidatorVersion = '1.6'
loadToastVersion = '1.0.12'
zoomingImgVersion = '2.1.3'
materialDialogVersion = '0.9.6.0'
fabVersion = '1.6.4'
fontIconCoreVersion = '3.0.0@aar'
googleMaterialFontVersion = '3.0.1.2.original@aar'
materialFontVersion = '2.2.0.4@aar'
awesomeFontVersion = '4.7.0.2@aar'
jUnitVersion = '4.12'
jsonUnitVersion = '1.27.0'
espressoVersion = '3.0.1'
mockitoVersion = '2.13.0'
}