build.gradle 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. apply plugin: 'com.android.application'
  2. android {
  3. signingConfigs {
  4. release {
  5. keyAlias 'Apex Land'
  6. keyPassword '#UL$dc01'
  7. storeFile file('/Users/ray/Documents/usai android keystore/usai_keystore')
  8. storePassword '#UL$dc01'
  9. }
  10. }
  11. splits {
  12. abi {
  13. enable true
  14. reset()
  15. include 'armeabi-v7a'
  16. universalApk true
  17. }
  18. }
  19. compileSdkVersion 29
  20. defaultConfig {
  21. applicationId "com.usai.apex.apexdriversi"
  22. minSdkVersion 24
  23. targetSdkVersion 29
  24. versionCode 4
  25. versionName "1.18"
  26. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  27. }
  28. buildTypes {
  29. release {
  30. minifyEnabled true
  31. zipAlignEnabled true
  32. shrinkResources true
  33. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
  34. debuggable false
  35. }
  36. debug {
  37. }
  38. }
  39. gradle.projectsEvaluated {
  40. tasks.withType(JavaCompile) {
  41. // options.compilerArgs << "-Xlint:deprecation"
  42. // options.compilerArgs << "--stacktrace"
  43. // options.compilerArgs << "--info"
  44. // options.compilerArgs << "--debug"
  45. // options.compilerArgs << "--scan"
  46. options.compilerArgs << "-Xlint:unchecked"
  47. }
  48. }
  49. }
  50. dependencies {
  51. implementation fileTree(include: ['*.jar'], dir: 'libs')
  52. implementation 'androidx.appcompat:appcompat:1.2.0'
  53. implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
  54. // implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  55. // implementation 'com.android.support:appcompat-v7:27.1.1'
  56. // implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  57. testImplementation 'junit:junit:4.12'
  58. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  59. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  60. api project(':RAUtilsLibrary')
  61. api project(':apexdriverslib')
  62. }