現在、iOS8対応などを進めているが、このタイミングで広告のSDKのアップデート分を反映させてみた。
最近、新たなアプリのリリースができていなかったこともあり、随分とバージョンが変わっていたようだ。
この結果、色々と変わったところが出てきた。
一番大きなこととして、「arm64」を入れても問題なくなった。
おそらく、随分前から大丈夫だったのだと思うのだが、ここの検証を怠っていたため、今頃気がついた。
さらに、追加が必要なframeworkが増えていた。
エラーの内容から比較的直ぐに何が追加が必要であるのかがわかったので良かった。
今回追加したものは、以下。
・ImageIO.framework
・EventKit.framework
・EventKitUI.framework
・AVFoundation.framework
・CoreTelephony.framework
ちなみにこんなエラーが出ていたものが取れる。
========================================================================
"_AVAudioSessionPortBuiltInSpeaker", referenced from:
-[GADDevice audioRouteUsingAVAudioSession] in libGoogleAdMobAds.a(GADDevice.o)
"_AVAudioSessionPortHeadphones", referenced from:
-[GADDevice audioRouteUsingAVAudioSession] in libGoogleAdMobAds.a(GADDevice.o)
"_CGImageSourceCopyPropertiesAtIndex", referenced from:
+[NADUtils animatedGIFWithData:] in libNendAd.a(NADUtils.o)
"_CGImageSourceCreateImageAtIndex", referenced from:
+[NADUtils animatedGIFWithData:] in libNendAd.a(NADUtils.o)
"_CGImageSourceCreateWithData", referenced from:
+[NADUtils animatedGIFWithData:] in libNendAd.a(NADUtils.o)
"_CGImageSourceGetCount", referenced from:
+[NADUtils animatedGIFWithData:] in libNendAd.a(NADUtils.o)
"_CTRadioAccessTechnologyDidChangeNotification", referenced from:
-[GADDevice enableRadioAccessTechnologyChecking] in libGoogleAdMobAds.a(GADDevice.o)
"_OBJC_CLASS_$_AVAudioSession", referenced from:
objc-class-ref in libGoogleAdMobAds.a(GADDevice.o)
"_OBJC_CLASS_$_CTTelephonyNetworkInfo", referenced from:
objc-class-ref in libGoogleAdMobAds.a(GADDevice.o)
"_OBJC_CLASS_$_EKEvent", referenced from:
objc-class-ref in libGoogleAdMobAds.a(GADOpener.o)
"_OBJC_CLASS_$_EKEventEditViewController", referenced from:
objc-class-ref in libGoogleAdMobAds.a(GADOpener.o)
"_kCGImagePropertyGIFDelayTime", referenced from:
+[NADUtils animatedGIFWithData:] in libNendAd.a(NADUtils.o)
"_kCGImagePropertyGIFDictionary", referenced from:
+[NADUtils animatedGIFWithData:] in libNendAd.a(NADUtils.o)
"_kCGImagePropertyGIFUnclampedDelayTime", referenced from:
+[NADUtils animatedGIFWithData:] in libNendAd.a(NADUtils.o)
========================================================================
参考になれば何より。
[0回]