| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- apply plugin: 'com.android.application'
- apply plugin: 'com.yanzhenjie.andserver'
- android {
- compileSdk 29
- defaultConfig {
- applicationId "com.qingdaofushan.home"
- minSdk 22
- 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 project(':VideoCall')
- 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'
- // eventbus
- implementation 'org.greenrobot:eventbus:3.2.0'
- // 权限请求框架:https://github.com/getActivity/XXPermissions
- implementation 'com.github.getActivity:XXPermissions:12.0'
- 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'
- }
|