iOS SDK 需要 iOS 7.0 及以上版本
必需:
CFNetwork.framework
SystemConfiguration.framework
Security.framework
ImageIO.framework
MobileCoreServices.framework
CoreTelephony.framework
libc++.tbd
libz.tbd
libsqlite3.0.tbd
百度钱包所需:
libstdc++.tbd
AddressBook.framework
AddressBookUI.framework
AudioToolbox.framework
CoreAudio.framework
CoreGraphics.framework
MapKit.framework
MessageUI.framework
QuartzCore.framework
sdk/Channel
下的相应目录。-ObjC
。Info.plist
中添加以下代码:<key>LSApplicationQueriesSchemes</key>
<array>
<string>weixin</string>
<string>wechat</string>
<string>alipay</string>
</array>
http://
,iOS 9 限制了 http 协议的访问,需要在 Info.plist
中添加如下代码:<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
XXXX does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target.
请在 Xcode 项目的 Build Settings 标签页中搜索 bitcode,将 Enable Bitcode 设置为 NO。