[ad_1]
I’m utilizing https://pub.dev/packages/flutter_flavorizr bundle to create flavors in my flutter app.
Every little thing is working high quality for me when operating on Android, however iOS just isn’t working as anticipated (at the least as I anticipate, perhaps I’m flawed). I’m creating an app with two flavors, totally different app names and icons. Android exhibits each icons and names appropriately, nevertheless, iOS simply adjustments the icon, however exhibits the identical identify (the unique one, not one of many flavors) on each apps. To repair this, I’ve to vary “Bundle show identify” in Runner information config (xcode) to a Person outlined Setting, and manually give a reputation to every run config.
Is that this the anticipated behaviour or ought to flavorizr make this config for me (because it does on Android)? If it ought to do it, what am I lacking?
Thx upfront for the assistance.
I connect my flavorizr config on pubspec.yaml
flavorizr:
ide: "thought"
app:
android:
flavorDimensions: "flavor-type"
ios:
flavors:
parla:
app:
identify: "Parla"
icon: "property/photographs/parla/brand.jpg"
android:
applicationId: "com.instance.parla"
icon: "property/photographs/parla/brand.jpg"
ios:
bundleId: "com.instance.parla"
icon: "property/photographs/parla/brand.jpg"
zamora:
app:
identify: "Zamora"
icon: "property/photographs/zamora/brand.jpg"
android:
applicationId: "com.instance.zamora"
icon: "property/photographs/zamora/brand.jpg"
ios:
bundleId: "com.instance.zamora"
icon: "property/photographs/zamora/brand.jpg"
[ad_2]
