magic_box_2/app/build.gradle

73 lines
2.6 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.yutou.jianrmg_v2"
minSdkVersion 19
targetSdkVersion 27
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(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
//implementation 'com.android.support:design:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//okhttp
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
//FastJson
implementation 'com.alibaba:fastjson:1.2.41'
//轮播图
implementation 'com.bigkoo:convenientbanner:2.0.5'
//图片流缓存
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
//滑动Tabs
implementation 'com.ogaclejapan.smarttablayout:library:1.6.1@aar'
implementation 'com.ogaclejapan.smarttablayout:utils-v13:1.6.1@aar'
//MD 对话框
implementation 'me.drakeet.materialdialog:library:1.3.1'
//载入界面
implementation 'com.kaopiz:kprogresshud:1.1.0'
//文本编辑器
implementation 'com.github.louisgeek:ClassicLinesEditView:1.0.2'
//文件选择器
implementation 'com.leon:lfilepickerlibrary:1.8.0'
//富文本展示 #关注更新
implementation 'com.zzhoujay.richtext:richtext:3.0.7'
//底端对话框
implementation 'com.orhanobut:dialogplus:1.11@aar'
//二维码扫描
implementation 'com.dlazaro66.qrcodereaderview:qrcodereaderview:2.0.3'
//底端菜单
implementation 'me.majiajie:pager-bottom-tab-strip:2.2.5'
//刷新载入
implementation project(path: ':RefreshRecyclerView')
//图片形状
implementation 'com.github.siyamed:android-shape-imageview:0.9.3@aar'
//毛玻璃
implementation 'jp.wasabeef:glide-transformations:3.0.0'
//图表
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
//
/* api project(path: ':BaseModel')
api project(path: ':GameDataModel')
api project(path: ':AppHome')
api project(path: ':MgListModel')
api project(path: ':ResModl')
api project(path: ':UserModel')*/
}