Environment
Code: Sample code attached
CoronaSDK: 2015.2722
OSX: 10.10.5
XCode: 7.0 (7A220)
I hope the community can help with this particular issue. When the Vungle Ad plugin is enabled, Corona was unable to build for iOS. Android is fine. I have been consistently able to reproduce this on my Mac laptop and a fresh laptop which did not previously have XCode and Corona SDK installed.
Conditions
Full build.settings attached. iOS Build fails when Vungle plugin is defined. Build is fine when disabled. Note that my app depends on Vungle for income and so cannot be disabled.
plugins =
{
[“CoronaProvider.ads.vungle”] =
{
publisherId = “com.vungle”,
},
}
Try building with a blank main.lua and the attached build.settings.
Error
Specifically, the error I am seeing when building for iphone+ipad:
Compiling Slices…
Compiling architecture: armv7
<execute>cd “/var/folders/8f/896bk98d04j5x01b1wb9stxm0000gn/T/CLtmp1x7l0n/armv7”;unset LIBRARY_PATH; export IPHONEOS_DEPLOYMENT_TARGET=6; export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin";/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -stdlib=libstdc++ -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk -ObjC -all_load -fobjc-link-runtime -miphoneos-version-min=6 -L"/Users/noodle/development/tmp/failapp.app/.build/libtemplate" -L"/Users/noodle/development/tmp/failapp.app/.build/CoronaProvider.ads.vungle" -L"/Users/noodle/development/tmp/failapp.app/.build/CoronaProvider.analytics.flurry" -L"/Users/noodle/development/tmp/failapp.app/.build/plugin.google.play.services" -framework AudioToolbox -framework AVFoundation -framework CFNetwork -framework CoreGraphic
s -framework CoreLocation -framework CoreMedia -framework CoreMotion -framework CoreVideo -framework GameKit -framework GLKit -framework ImageIO -framework MapKit -framework MediaPlayer -framework MessageUI -framework MobileCoreServices -framework OpenAL -framework OpenGLES -framework QuartzCore -framework Security -framework StoreKit -framework SystemConfiguration -framework UIKit -framework Accounts -framework AdSupport -framework CoreTelephony -framework EventKit -framework EventKitUI -weak_framework Foundation -weak_framework Twitter -lobjc -lsqlite3 -ltemplate -lads-vungle -lz -lanalytics-flurry -lgoogle-play-services -o “/var/folders/8f/896bk98d04j5x01b1wb9stxm0000gn/T/CLtmp1x7l0n/armv7/failapp”</execute>
<result>Undefined symbols for architecture armv7:
BUILD ERROR: There was a problem linking the app.
Check the console for more information.
“_OBJC_CLASS_$_WKWebView”, referenced from:
l_OBJC_$_CATEGORY_WKWebView_$_VungleWKWebView in libads-vungle.a(WKWebView+VungleWKWebView.o)
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)</result>
ERROR: Builder failed: Undefined symbols for architecture armv7:
“_OBJC_CLASS_$_WKWebView”, referenced from:
l_OBJC_$_CATEGORY_WKWebView_$_VungleWKWebView in libads-vungle.a(WKWebView+VungleWKWebView.o)
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
iOS build failed (12)
Can anyone identify if this is a bug with Corona? This issue also occurs with the last 5 nightly builds.
Many thanks
Jonathan