Post

Replies

Boosts

Views

Activity

Reply to Error From itms Invalid Bundle - One or more dynamic libraries
Same here: "ITMS-90562: Invalid Bundle - One or more dynamic libraries that are referenced by your app are not present in the dylib search path." Did anyone find a solution, Error messages really do need MORE detail than this. Surely the bot KNOWS which dylib are causing the error, why the secrecy? I have not changed any of the dylibs since the previous AppStore/TestFlight upload, why the complaint now?
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’20
Reply to SF Symbols lost color (only black) in iOS 15 widget
You haven't said what you did with .renderingMode(), but you need something like this: Swift: var imageConfig = UIImage.SymbolConfiguration.init(scale: (isCompact ? .medium : .large)) if #available(iOS 15.0, *){ imageConfig = imageConfig.applying(UIImage.SymbolConfiguration.init(hierarchicalColor: .tintColor))   imageConfig = imageConfig.applying(UIImage.SymbolConfiguration.configurationPreferringMulticolor()) } rtnImage = rtnImage.withRenderingMode(.alwaysTemplate) rtnImage = rtnImage.withConfiguration(imageConfig) SwiftUI; Image(uiImage: UIImage(systemName: getIconName(iconId: iconId))!) if #available(iOS 15.0, *){ .symbolRenderingMode(.multicolor) }
Topic: Design SubTopic: General Tags:
Aug ’21