build.gradle 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. //
  34. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-project.txt'
  35. }
  36. }
  37. }
  38. dependencies {
  39. // implementation fileTree(dir: "libs", include: ["*.jar"])
  40. api 'androidx.appcompat:appcompat:1.2.0'
  41. api 'androidx.legacy:legacy-support-v4:1.0.0'
  42. api 'androidx.constraintlayout:constraintlayout:2.0.4'
  43. implementation 'com.google.android.material:material:1.3.0'
  44. // implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.18'
  45. // implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  46. // api 'com.android.support:support-v4:27.1.0'
  47. //
  48. implementation project(path: ':RAUtilsLibrary')
  49. implementation project(path: ':rapdflib')
  50. // implementation 'androidx.wear:wear:1.0.0'
  51. // compileOnly 'com.google.android.wearable:wearable:2.6.0'
  52. // testImplementation 'junit:junit:4.12'
  53. // androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  54. // androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  55. }