apply plugin: 'com.android.application' apply plugin: 'com.yanzhenjie.andserver' android { compileSdk 29 defaultConfig { applicationId "com.qingdaofushan.homecaresas" minSdk 24 targetSdk 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" ndk { abiFilters "armeabi-v7a" } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'com.google.android.material:material:1.3.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'com.yanzhenjie.andserver:api:2.1.9' annotationProcessor 'com.yanzhenjie.andserver:processor:2.1.9' implementation 'com.just.agentweb:agentweb:4.1.4' implementation 'com.yanzhenjie.apache:httpcore:4.4.14.1' implementation project(':libWSLive') // eventbus implementation 'org.greenrobot:eventbus:3.2.0' // 权限处理框架 implementation 'com.github.tbruyelle:rxpermissions:0.10.2' implementation 'io.reactivex.rxjava2:rxjava:2.2.19' // 解析数据 gson implementation 'com.google.code.gson:gson:2.8.6' //必须使用 implementation 'com.lzy.net:okgo:3.0.4' implementation 'com.lzy.net:okrx2:2.0.2' implementation 'com.lzy.net:okserver:2.0.5' implementation 'org.apache.commons:commons-compress:1.18' // implementation 'com.github.jenly1314:zxing-lite:2.1.1' implementation 'com.github.kongzue.DialogX:DialogX:0.0.40' implementation 'com.google.zxing:core:3.3.0' }