Added flavours

This commit is contained in:
Vicente J. Ruiz Jurado 2018-08-04 22:41:37 +02:00
parent d57aad54ee
commit daa1ae343f
2 changed files with 16 additions and 1 deletions

View file

@ -55,6 +55,19 @@ android {
}
}
flavorDimensions "flavor-type"
productFlavors {
development {
dimension "flavor-type"
applicationIdSuffix ".dev"
versionNameSuffix "-dev"
}
production {
dimension "flavor-type"
}
}
}
flutter {