-
Beta Was this translation helpful? Give feedback.
Answered by
descorp
Mar 26, 2024
Replies: 1 comment 2 replies
-
This is indeed missing scenario. Currently this value is calculated as: private extension Bundle {
var displayName: String {
object(forInfoDictionaryKey: "CFBundleDisplayName") as? String ??
object(forInfoDictionaryKey: "CFBundleName") as? String ?? ""
}
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
YankovWeb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is indeed missing scenario.
Currently there is no way to override this. Created issue #391
Currently this value is calculated as: