Reputation: 2611
Hi I have an IOS project which has 2 library missing (appear in red, can not show in Finder) the project still build successfull but when I delete 2 libs, The build will stop.
Any what is this 2 libs any can we safety delete them?
Upvotes: 1
Views: 1846
Reputation: 3682
Don't worry, From iOS 9 .dylib
extention changed to .tbd
. Just search again the same files in Linked Frameworks and Libraries section and add those files with .tbd
extension.
You don't need to remove those .dylib
files because its supporting prior version of iOS 9.
Upvotes: 4