build.gradle 306 B

1234567891011121314151617
  1. apply plugin: 'com.android.instantapp'
  2. dependencies {
  3. implementation project(':feature')
  4. implementation project(':base')
  5. }
  6. android {
  7. compileSdkVersion 27
  8. buildToolsVersion '28.0.3'
  9. defaultConfig {
  10. minSdkVersion 19
  11. targetSdkVersion 25
  12. }
  13. productFlavors {
  14. }
  15. }