-
Notifications
You must be signed in to change notification settings - Fork 133
/
dependencies.gradle
33 lines (29 loc) · 948 Bytes
/
dependencies.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
allprojects {
repositories {
jcenter()
}
}
ext {
//Libraries
annotations = 'com.android.support:support-annotations'
supportV4 = 'com.android.support:support-v4'
supportV7 = 'com.android.support:appcompat-v7'
picasso = 'com.squareup.picasso:picasso'
//Version Libraries
annotationsVersion = '23.0.1'
supportV4Version = '23.0.1'
supportV7Version = '23.0.1'
picassoVersion = '2.3.4'
//Library
libraryDependencies = [
annotationsVersion: "${annotations}:${annotationsVersion}",
supportV4 : "${supportV4}:${supportV4Version}",
]
//Sample
sampleDependencies = [
annotationsVersion: "${annotations}:${annotationsVersion}",
supportV4 : "${supportV4}:${supportV4Version}",
supportV7 : "${supportV7}:${supportV7Version}",
picasso : "${picasso}:${picassoVersion}",
]
}