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') | |
} |