Added flavors

This commit is contained in:
Vadim 2022-12-05 22:14:30 +03:00
parent 4aa0c8e7c3
commit 94ac3a283f
2 changed files with 36 additions and 8 deletions

26
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "dev",
"request": "launch",
"type": "dart",
"args": [
"--flavor",
"dev",
],
},
{
"name": "prod",
"request": "launch",
"type": "dart",
"args": [
"--flavor",
"prod",
],
},
],
}

View file

@ -43,20 +43,22 @@ android {
} }
defaultConfig { defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.vodemn.lightmeter"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion flutter.minSdkVersion minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
} }
buildTypes { flavorDimensions "app"
release { productFlavors {
// TODO: Add your own signing config for the release build. dev {
// Signing with the debug keys for now, so `flutter run --release` works. applicationId "com.vodemn.lightmeter.dev"
dimension "app"
signingConfig signingConfigs.debug
}
prod {
applicationId "com.vodemn.lightmeter"
dimension "app"
signingConfig signingConfigs.debug signingConfig signingConfigs.debug
} }
} }