build.gradle 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. defaultConfig {
  5. applicationId "com.usai.apex.apexdriverscn"
  6. minSdkVersion 23
  7. targetSdkVersion 25
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. gradle.projectsEvaluated {
  19. tasks.withType(JavaCompile) {
  20. // options.compilerArgs << "-Xlint:deprecation"
  21. // options.compilerArgs << "--stacktrace"
  22. // options.compilerArgs << "--info"
  23. // options.compilerArgs << "--debug"
  24. // options.compilerArgs << "--scan"
  25. options.compilerArgs << "-Xlint:unchecked"
  26. }
  27. }
  28. }
  29. dependencies {
  30. // api project(':apexdriverslib')
  31. // api project(':RAUtilsLibrary')
  32. // implementation fileTree(dir: 'libs', include: ['*.jar'])
  33. //
  34. // implementation 'com.android.support:appcompat-v7:27.1.1'
  35. //
  36. // implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  37. testImplementation 'junit:junit:4.12'
  38. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  39. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  40. implementation fileTree(include: ['*.jar'], dir: 'libs')
  41. implementation 'com.android.support:appcompat-v7:26.1.0'
  42. // implementation 'com.android.support:appcompat-v7:27.1.1'
  43. // implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  44. // testImplementation 'junit:junit:4.12'
  45. // androidTestImplementation 'com.android.support.test:runner:1.0.2'
  46. // androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  47. api project(':RAUtilsLibrary')
  48. api project(':apexdriverslib')
  49. }