blob: f11f28d2a2108256a7aeef627747a3fe7fb4d4ae [file] [log] [blame]
apply plugin: 'com.android.dynamic-feature'
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 19
}
flavorDimensions "dim1", "dim2"
productFlavors {
fl1 { dimension "dim1" }
fl2 { dimension "dim1" }
ab { dimension "dim2" }
xy { dimension "dim2" }
}
}
dependencies {
implementation project(':app')
implementation project(':feature1')
}