build.gradle 786 B

123456789101112131415161718192021222324252627
  1. apply plugin: 'com.android.feature'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. minSdkVersion 19
  6. targetSdkVersion 25
  7. versionCode 1
  8. versionName "1.0"
  9. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  10. }
  11. buildToolsVersion '28.0.3'
  12. productFlavors {
  13. }
  14. compileOptions {
  15. sourceCompatibility JavaVersion.VERSION_1_8
  16. targetCompatibility JavaVersion.VERSION_1_8
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(include: ['*.jar'], dir: 'libs')
  21. implementation project(':base')
  22. testImplementation 'junit:junit:4.12'
  23. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  24. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  25. }