javascript - iOS - plist whitelisting for Jailbroken device -


i developing ionic app ios [phone/ipad] , want avoid user launching app. on jailbroken devices. achieve this, using below plugin.

https://github.com/leecrossley/cordova-plugin-jailbreak-detection

in ios 9 initial error:

the app. not allowed query scheme cydia ...

after adding in plist

<key>lsapplicationqueriesschemes</key>     <array>      <string>cydia</string> </array> 

error: -canopenurl: failed url: "****" - error: "(null)"

is there alternative can customise in code ios 9?

help appreciated !


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -