123456789101112131415161718192021222324 |
- apply plugin: 'com.android.feature'
- android {
- compileSdkVersion 27
- baseFeature true
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- api 'com.android.support:appcompat-v7:27.1.0'
- application project(':app')
- feature project(':feature')
- }
|