magic_box_2/MgListModel/build.gradle

53 lines
1.5 KiB
Groovy
Raw Normal View History

2018-04-13 15:47:23 +08:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
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'
//图片流缓存
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
//FastJson
implementation 'com.alibaba:fastjson:1.2.41'
//滑动Tabs
implementation 'com.ogaclejapan.smarttablayout:library:1.6.1@aar'
implementation 'com.ogaclejapan.smarttablayout:utils-v13:1.6.1@aar'
//底端菜单
implementation 'me.majiajie:pager-bottom-tab-strip:2.2.5'
//富文本编辑器
implementation 'com.github.louisgeek:LouisMultiLineEditText:v1.0.0'
//富文本
implementation 'com.github.limedroid:XRichText:v1.0.0'
//富文本
implementation 'com.github.limedroid:XRichText:v1.0.0'
2018-04-18 10:34:51 +08:00
api project(path: ':BaseModel')
api project(path: ':ResModl')
api project(path: ':RefreshRecyclerView')
2018-04-13 15:47:23 +08:00
}