forked from jjhesk/ToolBarLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (29 loc) · 1016 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext{
ftKit = '0.4.2'
//Support Libraries dependencies
supportDependencies = [
percent : "com.android.support:percent:${ANDROID_SUPPORT_LIBRARY}",
annotation: "com.android.support:support-annotations:${ANDROID_SUPPORT_LIBRARY}",
support : "com.android.support:support-v13:${ANDROID_SUPPORT_LIBRARY}",
appCompat : "com.android.support:appcompat-v7:${ANDROID_SUPPORT_LIBRARY}",
rv : "com.android.support:recyclerview-v7:${ANDROID_SUPPORT_LIBRARY}",
cv : "com.android.support:cardview-v7:${ANDROID_SUPPORT_LIBRARY}",
kitCore : "com.52inc:52Kit-core:${ftKit}"
]
}