Xcode – Error creating LLDB target

Did you use Architectures=$(ARCHS_STANDARD_32_BIT) and run your app on a 64 bit device? (iPhone 5S or iPhone 5S simulator) Apple seems to be stricter with apps which don’t support 64bit. So if there is no specific reason, I think it’s better to include arm64 in your build architecture NOTE ABOUT 64-BIT ARCHITECTURE An app extension … Read more

How to localise a string inside the iOS info.plist file?

You should use InfoPlist.strings file to localize values of Info.plist. To do this, go to File->New->File, choose Strings File under Resource tab of iOS, name it InfoPlist, and create. Open and insert the Info.plist values you want to localize like: NSLocationWhenInUseUsageDescription = “Description of this”; Now you can localize InfoPlist.strings file with translations. Select the … Read more