build.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. apply plugin: 'com.android.application'
  2. android {
  3. splits {
  4. abi {
  5. enable true
  6. reset()
  7. include 'armeabi-v7a'
  8. universalApk true
  9. }
  10. }
  11. compileSdkVersion 29
  12. defaultConfig {
  13. applicationId "com.usai.redant.raimage"
  14. minSdkVersion 24
  15. targetSdkVersion 29
  16. versionCode 7
  17. versionName "1.16.47214"
  18. // ndk.abiFilters 'armeabi-v7a',"arm64-v8a"
  19. }
  20. buildTypes {
  21. release {
  22. minifyEnabled true
  23. zipAlignEnabled true
  24. shrinkResources true
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
  26. }
  27. debug {
  28. // minifyEnabled true
  29. // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
  30. }
  31. }
  32. }
  33. dependencies {
  34. // compile 'com.android.support:support-v4:18.0.0'
  35. // compile 'org.bouncycastle.bcprov-jdk15on.1.57.org.bouncycastle:bcprov-jdk15on:1.57'
  36. implementation 'androidx.appcompat:appcompat:1.2.0'
  37. api 'androidx.legacy:legacy-support-v4:1.0.0'
  38. api 'androidx.constraintlayout:constraintlayout:2.0.4'
  39. api 'androidx.recyclerview:recyclerview:1.1.0'
  40. api project(path: ':RAUtilsLibrary')
  41. // implementation files('libs/core-2.3.0.jar')
  42. // implementation files('libs/bcprov-jdk15on-157.jar')
  43. // implementation files('libs/httpmime-4.1.1.jar')
  44. }
  45. android {
  46. useLibrary 'org.apache.http.legacy'
  47. }