build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. defaultConfig {
  5. applicationId "com.usai.apex.apexdriversi"
  6. minSdkVersion 23
  7. targetSdkVersion 26
  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. implementation fileTree(dir: 'libs', include: ['*.jar'])
  31. implementation 'com.android.support:appcompat-v7:26.1.0'
  32. // implementation 'com.android.support:appcompat-v7:27.1.1'
  33. // implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  36. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  37. api project(':RAUtilsLibrary')
  38. api project(':apexdriverslib')
  39. }