

English
Since iOS9, the system security policy has been updated, adding controls on user privacy and prohibiting scanning of system information, limiting the application's access to the scheme protocol. The schemes registered by other apps need to be added to the application access whitelist (LSApplicationQueriesSchemes) to achieve the following functions:
Notice
For iOS15 and above, each application can only be configured with a maximum of 50 whitelists. If the whitelist exceeds 50, the whitelist will be invalid. When configuring the whitelist, you need to pay attention to the following issues:
Note: Multiple whitelists are separated by ","
Tip: If the visual interface cannot be edited, please switch to the "source view" configuration
Open your project's manifest.json file and switch to "Code View"
"plus": {
"distribute": {
"ios": {
"urlschemewhitelist": "baidumap,iosamap",
//...
},
//...
},
//...
},
//...
hint
"urlschemewhitelist": ["baidumap","iosamap"]
Cloud packaging is also compatible and effective, but cannot be edited in the visual interface.
Notice
LSApplicationQueriesSchemes
field in the Info.plist file directly in the XCode projectIn order to facilitate developers to call some commonly used third-party applications, cloud packaging has added the following whitelists by default
weixin
wechat
mqq
weibosdk2.5
weibosdk
mqqapi
mqzone
sinaweibo
sinaweibohd
mqqopensdkapiV3
mqqwpa
mqqopensdkapiV2
mqqOpensdkSSoLogin
qqmap
baidumap
iosamap
openApp.jdMobile
taobao
hbuilder
pinduoduo
imeituan
tmall
dianping
vipshop
yanxuan
suning
kaola
snssdk32
shark.video
wbmain
cydia
streamapp
kwai
pptv
bilibili
kugouURL
qqnews
zhihu
doubanradio
wccbyihaodian
ctrip
kuaikanmanhua
ntesopen
yddict
shanbay
gugutouchmanga
bobo
wtloginmqq2
qrxs
mailmaster
jcnhers
lightsky
gaeagj
yixin
ydcourse
awemesso'
Notice
The application access whitelist added by default will not affect any function of the application. When the number of whitelists configured by the developer exceeds 50, the whitelist added by default will become invalid.