IOS 9 Adaptation

Source: Internet
Author: User

IOS 9 System Policy Update, please developer note upgrade

The recent Apple iOS 9 System Policy update restricts access to the HTTP protocol, and the app needs to whitelist the URL schemes to be used in "info.plist" to check whether other apps are installed.

This affects the ability of your app to use the SDK in iOS 9 (share, collect, pay, sign in, etc.) by adding the following code to "Info.plist":

<key>LSApplicationQueriesSchemes</key>

<array>

<string>weixin</string>

<string>wechat</string>

</array>

<key>NSAppTransportSecurity</key>

<dict>

<key>NSAllowsArbitraryLoads</key>

<true/>

</dict>

You will need to compile with Xcode 7 when you are finished.

Please note: Users who have not upgraded to 6.2.5 and above may still not be successful when using the relevant features under iOS 9.

Team
September 16, 2015

IOS 9 Adaptation

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.