Skip to content
Snippets Groups Projects
Commit b6ee8cdd authored by igorwork's avatar igorwork Committed by Markin Igor
Browse files

Add Android flavors.

parent 0f040d2d
No related branches found
No related tags found
1 merge request!1Mobile app initial implementation.
......@@ -48,6 +48,21 @@ android {
signingConfig signingConfigs.debug
}
}
flavorDimensions "flavor-type"
productFlavors {
development {
dimension "flavor-type"
applicationIdSuffix ".dev"
versionNameSuffix "-dev"
manifestPlaceholders = [appLabel:"Vereign-dev"]
}
production {
dimension "flavor-type"
manifestPlaceholders = [appLabel:"Vereign"]
}
}
}
flutter {
......
......@@ -11,7 +11,7 @@
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="Vereign"
android:label="${appLabel}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment