In Xcode i have section Info.plist values that override some Info.plist properties if any is set.
Since i want my app “Bundle Display Name” to be different depending on my current schema configuration (im using diff configuration for diff schema.)
I can’t find the way in my Project.swift change that properties.
Here is a distillation of Project.swfit is
--------Project.swift------------
…
let DevConfig = Configuration.debug(
name: .configuration(“Dev”),
settings: [
“BUNDLE_DISPLAY_NAME”: “TestApp”
],
xcconfig: “./MediaPlayer/Resources/TargetConfig/Dev/Dev.xcconfig”
)
let StoreConfig = Configuration.release(
name: .configuration(“Store”),
settings: [
“BUNDLE_DISPLAY_NAME”: “StoreApp”
],
xcconfig: “./MediaPlayer/Resources/TargetConfig/Store/Store.xcconfig”
)
…
Can you help me?