build.gradle 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.yanzhenjie.andserver'
  3. android {
  4. compileSdk 29
  5. defaultConfig {
  6. applicationId "com.qingdaofushan.home"
  7. minSdk 22
  8. targetSdk 29
  9. versionCode 5
  10. versionName "1.1.1"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. ndk {
  13. abiFilters "armeabi-v7a"
  14. }
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation project(':VideoCall')
  29. implementation 'androidx.appcompat:appcompat:1.2.0'
  30. implementation 'com.google.android.material:material:1.3.0'
  31. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  32. implementation 'com.yanzhenjie.andserver:api:2.1.9'
  33. annotationProcessor 'com.yanzhenjie.andserver:processor:2.1.9'
  34. implementation 'com.just.agentweb:agentweb:4.1.4'
  35. implementation 'com.yanzhenjie.apache:httpcore:4.4.14.1'
  36. // 权限请求框架:https://github.com/getActivity/XXPermissions
  37. implementation 'com.github.getActivity:XXPermissions:12.0'
  38. implementation 'io.reactivex.rxjava2:rxjava:2.2.19'
  39. // 解析数据 gson
  40. implementation 'com.google.code.gson:gson:2.8.6'
  41. //必须使用
  42. implementation 'com.lzy.net:okgo:3.0.4'
  43. implementation 'com.lzy.net:okrx2:2.0.2'
  44. implementation 'com.lzy.net:okserver:2.0.5'
  45. implementation 'org.apache.commons:commons-compress:1.18'
  46. // implementation 'com.github.jenly1314:zxing-lite:2.1.1'
  47. implementation 'com.github.kongzue.DialogX:DialogX:0.0.40'
  48. implementation 'com.google.zxing:core:3.3.0'
  49. implementation 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v8.1.7-jitpack'
  50. }