Hi Rabbit,
you are right, those pages does not have this requirement listed. However our iOS docs does:
https://support.vungle.com/hc/en-us/articles/204430550-Get-Started-with-Vungle-iOS-SDK
As the corona plugin is using our iOS SDK the same requirement applies. Thank you for noticing that! We will change the doc.
For the issue. I tried, macOS Sierra, Xcode 8, Corona 2949.
Integrating Vungle and build it I get the same error as you.
In the Corona logs I can see the deployment target is 6.
Compiling architecture: armv7 Oct 18 11:53:11.001 \<execute\>cd "/var/folders/h6/xywgnjvd7gq6tbv225bxnbs40000gn/T/CLtmp7J0Ktd/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/iPhoneOS10.0.sdk -ObjC -all\_load -fobjc-link-runtime -miphoneos-version-min=6 -L"/Users/gaborkremer/Desktop/Sample.app/.build/libtemplate" -L"/Users/gaborkremer/Desktop/Sample.app/.build/CoronaProvider.ads.vungle" -L"/Users/gaborkremer/Desktop/Sample.app/.build/plugin.google.play.services" -framework AudioToolbox -framework AVFoundation -framework CFNetwork -framework CoreGraphics -framework CoreLocation -framework CoreMedia -framework CoreMotion -framework CoreVideo -framework CoreText -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 GameController -weak\_framework AssetsLibrary -weak\_framework Photos -weak\_framework Foundation -weak\_framework Twitter -weak\_framework WebKit -lobjc -lsqlite3 -ltemplate -lads-vungle -lz -lgoogle-play-services -o "/var/folders/h6/xywgnjvd7gq6tbv225bxnbs40000gn/T/CLtmp7J0Ktd/armv7/Sample"\</execute\> \<result\>clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of iOS 7
_ export IPHONEOS_DEPLOYMENT_TARGET=6 _
However adding the line you mentioned to the settings:
MinimumOSVersion = “7.0”
Compiling architecture: Oct 18 11:51:01.475 armv7 Oct 18 11:51:02.471 \<execute\>cd "/var/folders/h6/xywgnjvd7gq6tbv225bxnbs40000gn/T/CLtmpbvika4/armv7";unset LIBRARY\_PATH; export IPHONEOS\_DEPLOYMENT\_TARGET=7.0; 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/iPhoneOS10.0.sdk -ObjC -all\_load -fobjc-link-runtime -miphoneos-version-min=7.0 -L"/Users/gaborkremer/Desktop/Sample.app/.build/libtemplate" -L"/Users/gaborkremer/Desktop/Sample.app/.build/CoronaProvider.ads.vungle" -L"/Users/gaborkremer/Desktop/Sample.app/.build/plugin.google.play.services" -framework AudioToolbox -framework AVFoundation -framework CFNetwork -framework CoreGraphics -framework CoreLocation -framework CoreMedia -framework CoreMotion -framework CoreVideo -framework CoreText -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 GameController -weak\_framework AssetsLibrary -weak\_framework Photos -weak\_framework Foundation -weak\_framework Twitter -weak\_framework WebKit -lobjc -lsqlite3 -ltemplate -lads-vungle -lz -lgoogle-play-services -o "/var/folders/h6/xywgnjvd7gq6tbv225bxnbs40000gn/T/CLtmpbvika4/armv7/Sample"\</execute\> \<result\>clang: warning: libstdc++ is deprecated; move to libc++\</result\> Done.
export IPHONEOS_DEPLOYMENT_TARGET=7.0
and the previous error disappeared.
Can you please check this section of your logs, maybe share it as well, and your build.settings file as well?
Thanks
Gabor