build.gradle 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 26
  20. defaultConfig {
  21. applicationId "com.usai.apex.apexdriversi"
  22. minSdkVersion 23
  23. targetSdkVersion 26
  24. versionCode 3
  25. versionName "1.13"
  26. testInstrumentationRunner "android.support.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 'com.android.support:appcompat-v7:26.1.0'
  53. // implementation 'com.android.support:appcompat-v7:27.1.1'
  54. // implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  55. testImplementation 'junit:junit:4.12'
  56. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  57. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  58. api project(':RAUtilsLibrary')
  59. api project(':apexdriverslib')
  60. }