-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
83 lines (63 loc) · 2.36 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
76
77
78
79
80
81
82
83
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.google.com' }
maven { url "https://jitpack.io" }
maven { url 'https://maven.fabric.io/public' }
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
classpath 'com.google.gms:google-services:3.1.0'
classpath 'io.fabric.tools:gradle:1.24.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.google.com' }
maven { url "https://jitpack.io" }
mavenLocal()
}
}
subprojects {
repositories {
maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext.deps = [
// RxJava
rxjava : 'io.reactivex:rxjava:1.2.0',
rxandroid : 'io.reactivex:rxandroid:1.2.1',
// Unit test dependencies
retrofit : 'com.squareup.retrofit2:retrofit:2.3.0',
retrofitRx : 'com.squareup.retrofit2:adapter-rxjava:2.0.2',
//butter knife
butterknifecompiler: 'com.jakewharton:butterknife:8.8.1',
butterknifeart : 'com.jakewharton:butterknife-compiler:8.8.1',
//Picasso
picasso : 'com.squareup.picasso:picasso:2.5.2',
//glide
glide :'com.github.bumptech.glide:glide:3.7.0',
// Integration test dependencies
gson : 'com.squareup.retrofit2:converter-gson:2.0.1',
//Event bus
eventBus : 'org.greenrobot:eventbus:3.0.0',
//Mutiple Screen
mutipledp :'com.intuit.sdp:sdp-android:1.0.4',
mutiplesp :'com.intuit.ssp:ssp-android:1.0.4',
//Round Image
round_image :'com.joooonho:selectableroundedimageview:1.0.1',
// Freshso
fresco :'com.facebook.fresco:fresco:1.3.0',
custom_cardview :'com.github.captain-miao:optroundcardview:1.0.0',
]