Since today, whenever I try to build any app, i get this error:
2014-09-25 14:07:20.271 Corona Simulator[219:e03] Using Custom Build Id 00000 Using additional build settings from: /Users/rdb/Desktop/Corona/Slingo/build.settings WARNING: Your SDK may be out of date b/c the following SDK directory could not be found: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk WARNING: Using the following SDK instead: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.1.sdk WARNING: Your SDK may be out of date b/c the following SDK directory could not be found: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk WARNING: Using the following SDK instead: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk 2014-09-25 14:07:39.141 Corona Simulator[219:e03] Runtime error /Users/rdb/Desktop/Slingo.app/.build/libtemplate/Builder.lua:310: \<error\>{"status":256,"message":"Undefined symbols for architecture armv7:\n \"\_OBJC\_CLASS\_$\_UIPercentDrivenInteractiveTransition\", referenced from:\n \_OBJC\_CLASS\_$\_GADPercentDrivenUserInteractionAnimationController in libgoogle-play-services.a(GADPercentDrivenUserInteractionAnimationController.o)\n \"\_OBJC\_METACLASS\_$\_UIPercentDrivenInteractiveTransition\", referenced from:\n \_OBJC\_METACLASS\_$\_GADPercentDrivenUserInteractionAnimationController in libgoogle-play-services.a(GADPercentDrivenUserInteractionAnimationController.o)\n \"\_UITransitionContextFromViewControllerKey\", referenced from:\n -[GADViewControllerFullScreenSwipeAnimation animateTransition:] in libgoogle-play-services.a(GADViewControllerFullScreenSwipeAnimation.o)\n -[GADViewControllerFullScreenSwipeAnimation animationContextForRestoringAnimationToSavedState:] in libgoogle-play-services.a(GADViewControllerFullScreenSwipeAnimation.o)\n \"\_UITransitionContextToViewControllerKey\", referenced from:\n -[GADViewControllerFullScreenSwipeAnimation animateTransition:] in libgoogle-play-services.a(GADViewControllerFullScreenSwipeAnimation.o)\n -[GADViewControllerFullScreenSwipeAnimation animationContextForTopToBottomAnimationPresentationWithTransitionContext:] in libgoogle-play-services.a(GADViewControllerFullScreenSwipeAnimation.o)\n -[GADViewControllerFullScreenSwipeAnimation animationContextForBottomToTopAnimationPresentationWithTransitionContext:] in libgoogle-play-services.a(GADViewControllerFullScreenSwipeAnimation.o)\nld: symbol(s) not found for architecture armv7\nclang: error: linker command failed with exit code 1 (use -v to see invocation)"}\</error\> stack traceback: [C]: ? [C]: in function 'assert' /Users/rdb/Desktop/Slingo.app/.build/libtemplate/Builder.lua:310: in function 'checkError' /Users/rdb/Desktop/Slingo.app/.build/libtemplate/Builder.lua:333: in function 'build' ?: in function 'buildExe' ?: in function \<?:636\>
The only thing I recently changed, is upgrading one of my iPads to iOS 8.
Using Corona 2014.2401
build.settings:
settings = { plugins = { ["CoronaProvider.ads.vungle"] = { publisherId = "com.vungle", }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", }, ["facebook"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone = true }, }, }, orientation = { default = "portrait", supported = { "portrait" } }, android = { usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE", }, }, iphone = { plist = { UIAppFonts = { "walibi-holland.ttf", }, CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", }, UIApplicationExitsOnSuspend = false, -- must be false for single sign-on to work CFBundleURLTypes = { { CFBundleURLSchemes = { "fbXXXXXXXXX", -- replace XXXXXXXXX with your facebook appId, make sure that you leave fb in front of it } } } } } }