build.gradle 830 B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.feature'
  2. android {
  3. compileSdkVersion 28
  4. baseFeature true
  5. defaultConfig {
  6. minSdkVersion 19
  7. targetSdkVersion 25
  8. versionCode 1
  9. versionName "1.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. buildToolsVersion '28.0.3'
  18. productFlavors {
  19. }
  20. compileOptions {
  21. sourceCompatibility JavaVersion.VERSION_1_8
  22. targetCompatibility JavaVersion.VERSION_1_8
  23. }
  24. }
  25. dependencies {
  26. api 'com.android.support:appcompat-v7:27.1.1'
  27. api 'com.android.support:design:27.1.1'
  28. api 'com.android.support.constraint:constraint-layout:1.1.3'
  29. application project(':app')
  30. feature project(':feature')
  31. }