build.gradle 2.0 KB

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