You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code uses UIApplication.shared.canOpenURL to see if there's an app to handle cydia://, the popular Jailbroken package manager app.
Since iOS 9, apps must include any non-system URL scheme they will test with canOpenURL in the LSApplicationQueriesSchemes ("Queried URL Schemes") field in their Info.plist. Without this, the checking of canOpenURLcydia:// will always return false.
The text was updated successfully, but these errors were encountered:
This code uses
UIApplication.shared.canOpenURL
to see if there's an app to handlecydia://
, the popular Jailbroken package manager app.Since iOS 9, apps must include any non-system URL scheme they will test with
canOpenURL
in theLSApplicationQueriesSchemes
("Queried URL Schemes") field in their Info.plist. Without this, the checking ofcanOpenURL
cydia://
will always returnfalse
.The text was updated successfully, but these errors were encountered: