-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathdependencies.gradle
36 lines (31 loc) · 1.19 KB
/
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
34
35
36
allprojects {
repositories {
jcenter()
}
}
ext {
//Android
androidBuildToolsVersion = "26.0.2"
androidMinSdkVersion = 16
androidTargetSdkVersion = 22
androidCompileSdkVersion = 22
supportLibraryVersion = '24.2.0'
otherLibraryVersion = '22.2.1'
kotlin_version = '1.1.2-4'
gradle_version = '3.0.1'
//ViewLibraries
butterKnifeVersion = '8.2.1'
androidDependencies = [
recyclerView: "com.android.support:recyclerview-v7:${supportLibraryVersion}",
appcompat_v7: "com.android.support:appcompat-v7:${otherLibraryVersion}",
cardview_v7 : "com.android.support:cardview-v7:23.2.0",
support_v4 : "com.android.support:support-v4:${supportLibraryVersion}",
design : "com.android.support:design:${otherLibraryVersion}",
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version",
kaptKotlin : "com.android.databinding:compiler:$gradle_version"
]
viewDependencies = [
butterKnife : "com.jakewharton:butterknife:${butterKnifeVersion}",
apt_butterKnife: "com.jakewharton:butterknife-compiler:${butterKnifeVersion}",
]
}