123456789101112131415161718192021222324252627282930313233 |
- apply plugin: 'com.android.feature'
- android {
- compileSdkVersion 28
- baseFeature true
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- buildToolsVersion '28.0.3'
- productFlavors {
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- api 'com.android.support:appcompat-v7:27.1.1'
- api 'com.android.support:design:27.1.1'
- api 'com.android.support.constraint:constraint-layout:1.1.3'
- application project(':app')
- feature project(':feature')
- }
|