62 lines
2.2 KiB
Groovy
62 lines
2.2 KiB
Groovy
apply plugin: 'com.android.application'
|
||
|
||
android {
|
||
compileSdkVersion 29
|
||
buildToolsVersion "29.0.2"
|
||
defaultConfig {
|
||
applicationId "com.appstore.uiui"
|
||
minSdkVersion 23
|
||
targetSdkVersion 29
|
||
versionCode 1
|
||
versionName "1.0"
|
||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
}
|
||
buildTypes {
|
||
release {
|
||
minifyEnabled false
|
||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
}
|
||
}
|
||
}
|
||
|
||
dependencies {
|
||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
implementation 'androidx.appcompat:appcompat:1.0.2'
|
||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
||
|
||
//github第三方控件maven
|
||
implementation 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'
|
||
//下拉刷新控件
|
||
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0' //1.0.5及以前版本的老用户升级需谨慎,API改动过大
|
||
implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0' //没有使用特殊Header,可以不加这行
|
||
|
||
implementation 'com.github.bumptech.glide:glide:4.10.0'
|
||
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
|
||
|
||
implementation 'com.arialyy.aria:core:3.7.7'
|
||
annotationProcessor 'com.arialyy.aria:compiler:3.7.7'
|
||
//OKGO
|
||
implementation 'com.lzy.net:okgo:3.0.4'
|
||
implementation 'com.lzy.net:okrx:1.0.2'
|
||
implementation 'com.lzy.net:okserver:2.0.5'
|
||
|
||
implementation 'com.alibaba:fastjson:1.2.21'
|
||
|
||
implementation 'com.blankj:utilcode:1.23.7'
|
||
//动态权限框架
|
||
implementation 'com.hjq:xxpermissions:6.0'
|
||
|
||
implementation 'com.squareup.retrofit2:converter-scalars:2.1.0'
|
||
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
|
||
implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
|
||
implementation 'io.reactivex:rxjava:1.2.2'
|
||
implementation 'io.reactivex:rxandroid:1.2.1'
|
||
testImplementation 'junit:junit:4.12'
|
||
|
||
|
||
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
||
implementation 'androidx.cardview:cardview:1.0.0'
|
||
}
|