Using android buildTypes in AppFlow?

Hi there,

I’ve been looking for a way for us to handle separate build types in our android app. For some context we have several build types in the apps build.gradle

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile(‘proguard-android.txt’), ‘proguard-rules.pro’
signingConfig signingConfigs.debug
}
dev {
matchingFallbacks = [‘debug’, ‘release’]
signingConfig signingConfigs.debug
}
staging {
matchingFallbacks = [‘debug’, ‘release’]
signingConfig signingConfigs.debug
}
qa {
matchingFallbacks = [‘debug’, ‘release’]
signingConfig signingConfigs.debug
}
}

This allows us to store several google-services.json files, one for each environment to have some separation between data, when we select different build variants in Android Studio

app/src/dev/google-services.json
app/src/qa/google-services.json

Is there any way to do this using AppFlow? So instead of us generating a signed APK in android studio => Uploading to store directly. Can it be incorporated into the build native binary process in Appflow?