| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- apply plugin: 'com.android.application'
- apply plugin: 'com.yanzhenjie.andserver'
- android {
- compileSdk 29
- defaultConfig {
- applicationId "com.qingdaofushan.home"
- minSdk 22
- targetSdk 29
- versionCode 5
- versionName "1.1.1"
- 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'
- // 权限请求框架: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'
- implementation 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v8.1.7-jitpack'
- }
|