forked from ximsfei/Android-skin-support
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
45 lines (37 loc) · 1.32 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.ximsfei.skindemo"
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.1.0'
compile project(':skin-support')
// compile 'skin.support:skin-support:1.2.5'
compile 'com.android.support:design:25.1.0'
// compile project(':skin-support-design')
compile 'skin.support:skin-support-design:1.2.2'
compile 'com.android.support:cardview-v7:25.1.0'
// compile project(':skin-support-cardview')
compile 'skin.support:skin-support-cardview:1.2.0'
// 第三方控件库换肤支持
compile 'de.hdodenhof:circleimageview:2.1.0'
// compile project(':third-part-support:circleimageview')
compile 'skin.support:circleimageview:2.1.0.1'
compile 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'
// compile project(':third-part-support:flycotablayout')
compile 'skin.support:flycotablayout:2.1.2'
}