build.gradle 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.ratradefiling"
  14. minSdkVersion 26
  15. targetSdkVersion 28
  16. versionCode 1
  17. versionName "1.0"
  18. ndk.abiFilters 'armeabi-v7a',"arm64-v8a"
  19. // testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  20. }
  21. buildTypes {
  22. release {
  23. minifyEnabled true
  24. shrinkResources true
  25. zipAlignEnabled true
  26. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-project.txt'
  27. }
  28. debug {
  29. debuggable true
  30. // minifyEnabled true
  31. // zipAlignEnabled true
  32. // shrinkResources true
  33. // proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-project.txt'
  34. }
  35. }
  36. }
  37. dependencies {
  38. // implementation fileTree(dir: "libs", include: ["*.jar"])
  39. api 'androidx.appcompat:appcompat:1.2.0'
  40. api 'androidx.legacy:legacy-support-v4:1.0.0'
  41. api 'androidx.constraintlayout:constraintlayout:2.0.4'
  42. implementation 'com.google.android.material:material:1.3.0'
  43. // implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.18'
  44. // implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  45. // api 'com.android.support:support-v4:27.1.0'
  46. //
  47. implementation project(path: ':RAUtilsLibrary')
  48. implementation project(path: ':rapdflib')
  49. // implementation 'androidx.wear:wear:1.0.0'
  50. // compileOnly 'com.google.android.wearable:wearable:2.6.0'
  51. // testImplementation 'junit:junit:4.12'
  52. // androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  53. // androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  54. }