You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some configuration that should only be applied to the Release build. However, all other configuration should be shared between the Debug and Release builds. When defining configuration for a specific build, the more generic configuration appears to stop working. For example, this successfully sets the bundle ID:
platforms:
ios:
bundleId: com.example.app
This sets the Release-specific settings, but the bundle ID stops being set:
I have some configuration that should only be applied to the
Release
build. However, all other configuration should be shared between theDebug
andRelease
builds. When defining configuration for a specific build, the more generic configuration appears to stop working. For example, this successfully sets the bundle ID:This sets the
Release
-specific settings, but the bundle ID stops being set:I've tried to workaround this problem by using YAML merging:
but that results in a warning and the
Release
configuration not being applied:Is this a bug? Is there a way to achieve this without duplicating the configuration?
The text was updated successfully, but these errors were encountered: