# Build Setup for iOS Add the following libraries to your "Link Binary with Libraries": - [x] `SystemConfiguration.framework` - [x] `CoreTelephony.framework` - [x] `libsqlite3.0` - [x] `libc++` - [x] `libz` Add "URL Schema" as your app id for "URL type" in Targets > info, See the following screenshot for the view on your XCode: ![Set URL Schema in XCode](https://res.wx.qq.com/open/zh_CN/htmledition/res/img/pic/app-access-guide/ios/image0042168b9.jpg) On iOS 9+, add `wechat` and `weixin` into `LSApplicationQueriesSchemes` in `Targets` > `info` > `Custom iOS Target Properties`. Or edit `Info.plist` then add: ```xml LSApplicationQueriesSchemes weixin wechat ``` Then copy the following in `AppDelegate.m`: ```objc #import // ios 8.x or older - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { return [RCTLinkingManager application:application openURL:url sourceApplication:sourceApplication annotation:annotation]; } // ios 9.0+ - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary *)options { return [RCTLinkingManager application:application openURL:url options:options]; } ```