Search results for

“file uri scheme”

81,721 results found

Post

Replies

Boosts

Views

Activity

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
4.1k
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
693
Oct ’17
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
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
373
Apr ’23
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
390
Oct ’15
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
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 🙂
Replies
1
Boosts
0
Views
4.1k
Activity
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 🙂
Replies
0
Boosts
0
Views
693
Activity
Oct ’17
Reply to Native HTML5 HLS doesn't call child playlist with master playlist URL
It seems that Safari on iOS is closer to the http redirection spec than the desktop safari. We use a 302 redirection in our load balancer that tells not to use the redirected URI for subsequent requests.Is this wanted ?EDIT: 302 or 301 redirection have the same problem, they don't use the redirected URI for subsequent requests
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’19
Can i get url scheme from application token?
I want to open an app which user chose from FamilyActivityPicker. What i know is that ios needs url scheme when open another app in an app, and familyActivityPicker can give me some application info. for example, i can get selected app's title and icon through Label(:ApplicationToken). Can I get url schemes similar to this way?
Replies
1
Boosts
0
Views
595
Activity
Aug ’23
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,
Replies
Boosts
Views
Activity
Oct ’19
What is the URL Scheme for Apple Tips app?
From another mobile app or Safari, I can launch Maps using the url scheme maps://What is the URL scheme for the Apple Tips app?
Replies
1
Boosts
0
Views
395
Activity
Aug ’15
Reply to Data size limit in MSMessage?
The documentation appears to be updated:The URL property must use an http, https, or file scheme. Custom app schemes are not supported. Additionally, the URL cannot be longer than 5,000 characters.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’16
voice line over tel: scheme
My App uses the tel: scheme to initialize calls. with 12.1 beta 2 i checked this out with my new dual esim. i cant select the voice line with the url scheme. any suggestions ?
Replies
0
Boosts
0
Views
449
Activity
Oct ’18
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:
Replies
Boosts
Views
Activity
Dec ’16
airport utility ios url scheme
While in Mac the apconfig:// apupdate:// schemes work fine and the airport opens automatically, in iOS I can't find any scheme that opens the airport utility
Replies
1
Boosts
0
Views
329
Activity
Aug ’24
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?
Replies
0
Boosts
0
Views
373
Activity
Apr ’23
Reply to Xcode project and source control
This is contains the html describing the build scheme. It should only change when you change the scheme. Another file contains breakpoints, no use to source control. AFAIU, it should be safe to ignore all in your account (igorkorot) userData.
Replies
Boosts
Views
Activity
Oct ’21
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:
Replies
1
Boosts
0
Views
390
Activity
Oct ’15
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:
Replies
Boosts
Views
Activity
Mar ’17
Reply to Why isn't an XCFramework's Info.plist "stable"?
Also: the same issue exists for scheme files, which is equally annoying.
Replies
Boosts
Views
Activity
Oct ’23