Initial commit

This commit is contained in:
linglongxin24
2016-06-14 13:49:26 +08:00
commit ceed245fb3
154 changed files with 16198 additions and 0 deletions

29
app/build.gradle Normal file
View File

@@ -0,0 +1,29 @@
apply plugin: 'com.android.application'
android {
buildTypes {
release {
//是否zip优化
zipAlignEnabled true
//是否移除无用的资源
shrinkResources true
//是否混淆
minifyEnabled true
//混淆配置文件
proguardFile 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.alibaba:fastjson:1.1.46.android'
compile 'com.github.florent37:viewanimator:1.0.2'
compile project(':library:WheelPicker')
compile project(':library:FilePicker')
compile project(':library:ColorPicker')
// compile 'cn.qqtheme.framework:WheelPicker:1.1.0'
// compile 'cn.qqtheme.framework:FilePicker:1.1.0'
// compile 'cn.qqtheme.framework:ColorPicker:1.1.0'
}