File tree Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ Mirror for Cocoapods
5
5
官方下载地址:
6
6
[ ` https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1419319164&lang=zh_CN ` ] ( https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1419319164&lang=zh_CN )
7
7
8
- ----
9
-
10
8
# 1.6
11
9
12
10
** 重要!**
@@ -16,20 +14,20 @@ SDK1.6
16
14
1 . iOS 9 系统策略更新,限制了 http 协议的访问,此外应用需要在 ` Info.plist ` 中将要使用的 URL Schemes 列为白名单,才可正常检查其他应用是否安装。
17
15
受此影响,当你的应用在 iOS 9 中需要使用微信 SDK 的相关能力(分享、收藏、支付、登录等)时,需要在 ` Info.plist ` 里增加如下代码:
18
16
19
- ``` xml
20
- <key >LSApplicationQueriesSchemes</key >
21
- <array >
22
- <string >weixin</string >
23
- </array >
24
-
25
- <key >NSAppTransportSecurity</key >
26
- <dict >
27
- <key >NSAllowsArbitraryLoads</key >
28
- <true />
29
- </dict >
30
- ```
31
-
32
- 或者配置白名单域名 pingma.qq.com
17
+ ```xml
18
+ <key>LSApplicationQueriesSchemes</key>
19
+ <array>
20
+ <string>weixin</string>
21
+ </array>
22
+
23
+ <key>NSAppTransportSecurity</key>
24
+ <dict>
25
+ <key>NSAllowsArbitraryLoads</key>
26
+ <true/>
27
+ </dict>
28
+ ```
29
+
30
+ 或者配置白名单域名 pingma.qq.com
33
31
34
32
2 . 开发者需要在工程中链接上 ` CoreTelephony.framework `
35
33
3 . 解决 bitcode 编译不过问题
You can’t perform that action at this time.
0 commit comments