magic_box_2/UserModel/build.gradle

45 lines
1.1 KiB
Groovy
Raw Normal View History

2018-04-13 15:47:23 +08:00
apply plugin: 'com.android.library'
android {
2018-04-19 10:50:27 +08:00
compileSdkVersion 26
2018-04-13 15:47:23 +08:00
defaultConfig {
minSdkVersion 21
2018-04-19 10:50:27 +08:00
targetSdkVersion 26
2018-04-13 15:47:23 +08:00
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2018-04-19 10:50:27 +08:00
2018-04-13 15:47:23 +08:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2018-04-19 10:50:27 +08:00
implementation 'com.android.support:appcompat-v7:26.1.0'
2018-04-13 15:47:23 +08:00
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
2018-04-19 10:50:27 +08:00
//图片流缓存
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
//FastJson
implementation 'com.alibaba:fastjson:1.2.41'
//毛玻璃
implementation 'jp.wasabeef:glide-transformations:3.0.0'
api project(path: ':BaseModel')
api project(path: ':ResModl')
2018-04-13 15:47:23 +08:00
}