为工程添加 SDK Framework

添加SDK文件夹下的所有文件到工程中

添加必要依赖库以及工程配置

在工程 Target Setting -> Build Phases -> Link Binary With Libraries 中进行设置

  • CoreMedia.framework
  • CoreTelephony.framework
  • CoreLocation.framework
  • CoreMotion.framework
  • SystemConfiguration.framework
  • AdSupport.framework
  • CFNetwork.framework
  • MessageUI.framework
  • libc++.dylib/tbd
  • libsqlite3.dylib/tbd
  • libz.dylib/tbd
  • libc.dylib/tbd
  • libxml2.tbd
  • AVFoundation.framework
  • SafariServices.framework
  • MobileCoreServices.framework
  • Twitter.framework
  • WebKit.framework
  • StoreKit.framework
  • CoreGraphics.framework
  • JavaScriptCore.framework
  • MediaPlayer.framework
  • GLKit.framework
  • EventKit.framework

在工程 Target Setting -> Build Settings -> Other Linker Flags 项添加 "-ObjC"

设置允许 http 连接

在工程的 Info.plist 文件中,设置 App Transport Security Settings 选项下 Allow Arbitrary Loads 值为 YES,对应 plist 内容为

<key>NSAppTransportSecurity</key> 
<dict> 
    <key>NSAllowsArbitraryLoads</key> 
    <true/> 
</dict>

设置定位

在工程的 Info.plist 文件中,添加 NSLocationWhenInUseUsageDescription , NSLocationAlwaysAndWhenInUseUsageDescription 。对应 plist 内容为:

<dict> 
    <key>NSLocationWhenInUseUsageDescription</key>
    <string>请求使用当前位置</string>
    <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
    <string>请求使用当前位置</string>
</dict>

WiFi设置

如果Xcode版本为10.0,适配iOS12,在工程的 Capabilities 中,打开Access WiFi Information 系统会自动生成XXX.entitlements。 在开发者账号的App IDs的证书下选中 Access WiFi Information。 如果是手动生成,重新生成描述文件。

在程序入口设置 AppID 信息

#import <AdHubSDK/AdHubSDK.h>

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    [AdHubSDKManager configureWithApplicationID:@"从 AdHub 申请的 AppID"];
    //...
}

results matching ""

    No results matching ""