Search results for

file uri scheme

78,495 results found

Post

Replies

Boosts

Views

Activity

Reply to How to install self signed CA root certificate on iOS 13 simulators
I am still consistently seeing this issue when I try to drag and drop a .cer file onto my simulators per the instructions in https://developer.apple.com/library/archive/qa/qa1948/_index.html. However, if I put my .cer file on a webserver an navigate to it using safari in the simulator, the profile installation process happens as expected.The drag and drop method tries to open the .cer file using the file:// scheme. The iOS 13 release notes do not specifically mention that loading a .cer file using the file:// scheme has been dropped, but they do mention changes to what file:// urls can do.https://developer.apple.com/documentation/ios_ipados_release_notes/ios_13_release_notes?preferredLanguage=occRemoved support for FTP and File URL schemes for Proxy Automatic Configuration (PAC). HTTP and HTTPS are the only supported URL schemes for PAC. This affects all PAC configurations including, but not limited to,
Oct ’19
Extension with multiple schemes and bundle IDs
Was wondering if someone could help me out. I have a an Xcode project set up with 1 main app target with 2 schemes (dev, live). Each scheme has a different bundle ID so that i can have both apps installed on the device at the same time. All is working fine, although I’m now trying to also add an notification extension. I have set the bundle id of the extension to be dynamic so that it matches its parent id. Although, when building from dev scheme it stills says the parent id does not match. Live seems to be build fine. Im not sure what I’m doing wrong. It looks like the extension doesn’t get built when i change schemes. Any suggestions have i can have 1 extension and 2 different schemes? Thanks 🙂
1
0
4k
Aug ’17
target scheme test as root
Hi,In target scheme editor, Run, we can Debug Process As root.How can we set the same option in Test as Debug Process As root. The option is disabled.I'm using Xcode Version 9.0 (9A235). I couldn't find anything in .xcscheme file.Thanks 🙂
0
0
654
Oct ’17
Reply to NSURLProtocol in WKWebView
Hi,We are trying to port our Cordova app to WKWebView. But the Cordova File plug-in use a custom scheme to work. With UIWebView, this plug-in was intercepting URLs with custom scheme using NSURLProtocol to load related files (local resources files). It seem that it is not possible to do that with WKWebView, and it is a blocker for us. There is another strategy to do that in WKWebView?Do we need to wait iOS 11 to have this kind of feature?Thanks!
Topic: Programming Languages SubTopic: General Tags:
Dec ’16
How does Robokiller deep link into Settings, are they using a private URL scheme?
An app can legally link into its own section of the Settings app, and if it uses CallKit, it can link into the Call Blocking & Identification section. Linking anywhere else into Settings is making use of private URL schemes and is supposed to not be permitted and the app rejected during submission. However the Robokiller app deep links into the Settings app with the page scrolled down to where the Phone section is. How are they doing that? Is there some new API that permits the app to link to there? Or are they making illegal use of private URIs and have been getting away with getting past App Store review for years?
0
0
351
Apr ’23
Reply to AssetId is malformed in Safari Demo Application if URI is greater than 16 characters
Hey,Here are the details of the work around that I used to fix this (for me)/** In the Safari Sample App **/function extractContentId(data) { myContentId = arrayToString(data); console.log('AssetID : ' + myContentId); // contentId is passed up as a URI, from which the host must be extracted: - Karl: Bug in Safari if URI is longer that 16 chars var link = document.createElement('a'); var uri = encodeURIComponent(myContentId); link.href = myContentId; //return link.hostname; console.log('AssetId :' + myContentId.split('//')[1]); return myContentId.split('//')[1]; //Karl: work around for bug }/** Parsing AssetId in C# **/System.Text.Encoding.ASCII.GetString(bytes);
Topic: Media Technologies SubTopic: Streaming Tags:
Mar ’17
Cannot reset schemes on 'canOpenUrl'
The official API reference says as follows.https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/#//apple_ref/occ/instm/UIApplication/canOpenURL: If your app is linked against an earlier version of iOS but is running in iOS 9.0 or later, you can call this method on 50 distinct URL schemes. After hitting this limit, subsequent calls to this method return NO. If a user reinstalls or upgrades the app, iOS resets the limit. I made an AdHoc .ipa and tried to reinstall to confirm whether the limit of URL schemes were reset or not through iTunes. However, unlike the sentence says, the limit was not reset.How should we do reset the URL limit ?
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
369
Oct ’15