Ilia Kazantsev
05/16/2024, 9:07 AMbuildTypes {
if (findByName("stage") == null) {
create("stage") {
initWith(getByName("debug"))
matchingFallbacks += listOf("debug")
signingConfig = signingConfigs.getByName("debug")
buildConfigField("String", "BASE_URL", "some url")
}
}
}
I want the stage build variant to rely on the debugImplementation dependency resolution configuration. Am I correct in understanding that matchingFallbacks
should achieve this?
Thank you!