Search results for

“file uri scheme”

84,450 results found

Post

Replies

Boosts

Views

Activity

Reply to SiriKit stopped using Siri Dialog prompts (iOS13.1)
To reiterate the information @jeffhunterx received from our SiriKit engineering team, please consider the following things to address this issue in your app:Localize your intent definition file to all languages that your app supportsEnsure that your Xcode project identifies localizations by the ISO 639-1 language identifier scheme (additional information on the schemes). Older Xcode projects may use a different language identification scheme and should be updated.If your app has not yet been localized, ensure that the selected Siri language in Settings matches the CFBundleDevelopmentRegion of your Xcode project, and the value of this key is in ISO 639-1 format
Topic: App & System Services SubTopic: General Tags:
Sep ’19
iOS 18 System Bug Causes URL Scheme Failure
iOS 18 System Bug Causes URL Scheme Failure A bug in iOS 18 causes URL Schemes to become invalid through the following steps, resulting in failure to open apps via URL Scheme. Reproduction Steps: Long-press the app icon Select Require Face ID Choose Hide and Require Face ID to hide the app Go to the App Library and locate the hidden app in the Hidden folder Uninstall the hidden app reinstalling the hidden app After reinstalling the app, all configured URL Schemes will become invalid, causing failure when attempting to open the app via URL Scheme. The issue appears to be that after uninstalling a hidden app and reinstalling it, the system fails to restore the app's URL Scheme functionality.
2
0
273
Apr ’25
Reply to AVAssetDownloadTask and playback, m3u8 has remote URLs
A little more information....I downloaded the container from my app on to my computer and looked inside. In the m3u8 file that's saved into the movpkg bundle, the segments are always preceeded by a key, like this:#EXT-X-KEY:METHOD=AES-128,URI=https://myKeyURL.com/keypath,IV=0x00000000000000000000000000000000#EXTINF:4.0960,https://mySegmentURL.com/slices/segment1.tsAlso... the frag files from apple's sample app... if I change the extension to .ts, they play fine in QuickTime. But the frag files from my video do not. So my current theory is that when in airplane mode, it's trying to reach the key at the remote server to decrypt the segment, and of course it's unreachable when offline.Any ideas?
May ’20
Reply to Deep Linking Integration
On iOS9.2 Apple made changaes to Safari which made it impossible to use URI schemas and redirect to the store when the app is not installed. The reason was user privacy which now prevent checking programatically if an app is installed. Apple are pushing to use Universal Links instead of URI schemas as this solution is more secured and the user expirience is better.The problem you described is not related to AppsFlyer - Universal Links fails on iOS when there's a dash on the bundle ID. Try to change com.te-st.ios to com.test.ios.
Apr ’16
Reply to DocC documentation warnings as errors
Xcode has an Other DocC Flags build setting—for additional flags to pass to DocC—that you can specify either in the build settings of your Xcode project or on the command line (as OTHER_DOCC_FLAGS). On the command line you can either override a build setting by directly specifying it as a key-value pair: xcodebuild docbuild -scheme NameOfYourScheme -destination 'platform=macOS' OTHER_DOCC_FLAGS='--warnings-as-errors' or you can specify any number of build settings in an xcconfig file and pass that file for the -xcconfig command line option: # create a 'xcconfig' file echo OTHER_DOCC_FLAGS = --warnings-as-errors > MyBuildSettings.xcconfig # pass it to xcodebuild xcodebuild docbuild -scheme NameOfYourScheme -destination 'platform=macOS' -xcconfig MyBuildSettings.xcconfig
Mar ’25
Sheet doesn't adapt current system colour scheme
Let's assume that default colour system scheme is Light mode. If I open this app and open settings window then change colour scheme to Dark and then change again to System, the main window get back the Light mode but the settings window remains in Dark mode. If I change default colour system scheme is Dark mode, then open this app, open settings window then change colour scheme to Light and then change again to System, the main window get back the Dark mode but the settings window remains in Light mode. What am I doing wrong? Here is simplified code to demo my issue import SwiftUI struct ContentView: View { @State private var isSettingsViewPresented = false @State private var colorScheme = ColorScheme?.none var body: some View { NavigationStack { VStack { Image(systemName: globe) .imageScale(.large) .foregroundStyle(.tint) Text(Hello, world!) } .toolbar { ToolbarItem { Button { isSettingsViewPresented.toggle() } label: { Label(Settings, systemImage: gear) } } } .sheet(isPre
0
0
403
Nov ’23
URL Scheme to open Safari from Facebook
Hello Apple team and fellow developers,We are working on a website that requires users to allow microphone permission to interact with our web content.However, when we open the website link from a Facebook post, it will always use Facebook-In-App-Browser.And Facebook Browser doesn't have access to microphone permission.So we're checking if there is a way to open the link in Safari browser from a Facebook post.Here are some approaches that we tried:1. Use Safari Scheme: https://codepen.io/felquis/pen/gPLrgv2. Use FTP to open Safari successfully but we can't run the Javascript with this protocol to redirect users to our main websiteAny help, tip or confirmation if this is possible or not are all appreaciate 😟.Thank you so much in advance,Nhan
2
0
4.6k
Oct ’19
Shortcuts – how do users install and how to use URL scheme ?
I would like to distribute a Shortcut with my AppleScript applet (currently the work is done by an Automator Service). I have two questions: Is it possible to automate the installation for users ? It seems that the only way a shortcut can be installed is via the Shortcuts app. So, when they ask for the Shortcut to be installed, the app must be opened and then users have to respond to the install shortcut dialog and, at least, click on Add Shortcut. Can that process be automated ? A shortcut can be run from a URL, which is very useful. The URL looks like this: shortcuts://run-shortcut?name=[name of shortcut] However, running a shortcut from a URL always opens the Shortcuts app before running the shortcut. This breaks my code which is expecting a web browser to be active. Is there a way of using at the shortcuts URL scheme run the shortcut in place i.e. without opening the shortcuts app ? Or, can the URL scheme be used to call the Shortcuts Event app ? Thanks.
2
0
1.4k
Apr ’23
Not all Apple app URL Schemes working on iOS 16
I'm building an iOS app and not all of the URL schemes are working for directing users from my app into native Apple applications. I'm using this list for guidance on relevant URL schemes, https://medium.com/@contact.jmeyers/complete-list-of-ios-url-schemes-for-apple-apps-and-services-always-updated-800c64f450f. I suspect it might not be 100% correct anymore, but I can't find a source of truth in Apple's documentation for all currently supported URL schemes. I'm trying to guide users from my app into both Voicemail (within Phone) and Voice Memos. I've added the URL schemes for both apps to the LSApplicationQueriesSchemes array in my Info.plist file, but they won't navigate when I try to open URLs to vmshow:// or voicememos://. Other URL schemes like tel / telprompt / music / message / podcast / mobilenotes all work as expected and direct my app users to the respective Apple apps. So far I've noticed at least 4 URL schemes that do not work
0
0
1.9k
Jan ’23
How to update URL Scheme Launch target on development machine
I have implemented a custom URL scheme for my app and things were working fine until all of a sudden, launching the app via URL (In Safari for example) didn't seem to be taking any of my code changes. If I ran the app from XCode, it was fine. After beating my head against the wall for a bit, I found that the URL scheme was launching the application from my xcode Archive folder which obviously doesn't have any of my latest code. I can't figure out how to change this. Prior to this, launching via URL would launch from the build folder. I'm sure I could remove the Archive folder and re-associating but I'm hoping there is a better way to accomplish this. Thx
0
0
378
Sep ’23
Reply to WatchKit framework is no longer included in the iOS SDK: so what ?
I will test on this basis. Thanks.EDITED.I tested and it works without any change to the app.What has changed is the way schemes are organized.Before, there was an IOS scheme and a Watch scheme, the watch scheme including both targets : iPhone and APpleWatch.Nos, there are 2 schemes, but the watch scheme includes only the watch.However, when compiling, it creates both (and opens the 2 simulators).
Sep ’19
Xcode Beta 2 crashing when editing 'Test' settings in scheme
When bringing up the 'Test' panel in a project's scheme, then closing the scheme editor or switching to another panel (e.g. 'Build'), Xcode will crashHas consistently occurred in all my projects and in new single-view iOS app project.Filed rdar://27267460No workaround to my knowledge.
Replies
1
Boosts
0
Views
393
Activity
Jul ’16
Reply to UIActivityViewController
I've looked at it before but it does not explain it very well and it doesn't make any sense is there any way i can share a file with a url scheme attached so I can access that URL when the user opens it?
Replies
Boosts
Views
Activity
Aug ’18
Reply to SiriKit stopped using Siri Dialog prompts (iOS13.1)
To reiterate the information @jeffhunterx received from our SiriKit engineering team, please consider the following things to address this issue in your app:Localize your intent definition file to all languages that your app supportsEnsure that your Xcode project identifies localizations by the ISO 639-1 language identifier scheme (additional information on the schemes). Older Xcode projects may use a different language identification scheme and should be updated.If your app has not yet been localized, ensure that the selected Siri language in Settings matches the CFBundleDevelopmentRegion of your Xcode project, and the value of this key is in ISO 639-1 format
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’19
iOS 18 System Bug Causes URL Scheme Failure
iOS 18 System Bug Causes URL Scheme Failure A bug in iOS 18 causes URL Schemes to become invalid through the following steps, resulting in failure to open apps via URL Scheme. Reproduction Steps: Long-press the app icon Select Require Face ID Choose Hide and Require Face ID to hide the app Go to the App Library and locate the hidden app in the Hidden folder Uninstall the hidden app reinstalling the hidden app After reinstalling the app, all configured URL Schemes will become invalid, causing failure when attempting to open the app via URL Scheme. The issue appears to be that after uninstalling a hidden app and reinstalling it, the system fails to restore the app's URL Scheme functionality.
Replies
2
Boosts
0
Views
273
Activity
Apr ’25
Reply to AVAssetDownloadTask and playback, m3u8 has remote URLs
A little more information....I downloaded the container from my app on to my computer and looked inside. In the m3u8 file that's saved into the movpkg bundle, the segments are always preceeded by a key, like this:#EXT-X-KEY:METHOD=AES-128,URI=https://myKeyURL.com/keypath,IV=0x00000000000000000000000000000000#EXTINF:4.0960,https://mySegmentURL.com/slices/segment1.tsAlso... the frag files from apple's sample app... if I change the extension to .ts, they play fine in QuickTime. But the frag files from my video do not. So my current theory is that when in airplane mode, it's trying to reach the key at the remote server to decrypt the segment, and of course it's unreachable when offline.Any ideas?
Replies
Boosts
Views
Activity
May ’20
Reply to Deep Linking Integration
On iOS9.2 Apple made changaes to Safari which made it impossible to use URI schemas and redirect to the store when the app is not installed. The reason was user privacy which now prevent checking programatically if an app is installed. Apple are pushing to use Universal Links instead of URI schemas as this solution is more secured and the user expirience is better.The problem you described is not related to AppsFlyer - Universal Links fails on iOS when there's a dash on the bundle ID. Try to change com.te-st.ios to com.test.ios.
Replies
Boosts
Views
Activity
Apr ’16
Reply to DocC documentation warnings as errors
Xcode has an Other DocC Flags build setting—for additional flags to pass to DocC—that you can specify either in the build settings of your Xcode project or on the command line (as OTHER_DOCC_FLAGS). On the command line you can either override a build setting by directly specifying it as a key-value pair: xcodebuild docbuild -scheme NameOfYourScheme -destination 'platform=macOS' OTHER_DOCC_FLAGS='--warnings-as-errors' or you can specify any number of build settings in an xcconfig file and pass that file for the -xcconfig command line option: # create a 'xcconfig' file echo OTHER_DOCC_FLAGS = --warnings-as-errors > MyBuildSettings.xcconfig # pass it to xcodebuild xcodebuild docbuild -scheme NameOfYourScheme -destination 'platform=macOS' -xcconfig MyBuildSettings.xcconfig
Replies
Boosts
Views
Activity
Mar ’25
Sheet doesn't adapt current system colour scheme
Let's assume that default colour system scheme is Light mode. If I open this app and open settings window then change colour scheme to Dark and then change again to System, the main window get back the Light mode but the settings window remains in Dark mode. If I change default colour system scheme is Dark mode, then open this app, open settings window then change colour scheme to Light and then change again to System, the main window get back the Dark mode but the settings window remains in Light mode. What am I doing wrong? Here is simplified code to demo my issue import SwiftUI struct ContentView: View { @State private var isSettingsViewPresented = false @State private var colorScheme = ColorScheme?.none var body: some View { NavigationStack { VStack { Image(systemName: globe) .imageScale(.large) .foregroundStyle(.tint) Text(Hello, world!) } .toolbar { ToolbarItem { Button { isSettingsViewPresented.toggle() } label: { Label(Settings, systemImage: gear) } } } .sheet(isPre
Replies
0
Boosts
0
Views
403
Activity
Nov ’23
URL Scheme to open Safari from Facebook
Hello Apple team and fellow developers,We are working on a website that requires users to allow microphone permission to interact with our web content.However, when we open the website link from a Facebook post, it will always use Facebook-In-App-Browser.And Facebook Browser doesn't have access to microphone permission.So we're checking if there is a way to open the link in Safari browser from a Facebook post.Here are some approaches that we tried:1. Use Safari Scheme: https://codepen.io/felquis/pen/gPLrgv2. Use FTP to open Safari successfully but we can't run the Javascript with this protocol to redirect users to our main websiteAny help, tip or confirmation if this is possible or not are all appreaciate 😟.Thank you so much in advance,Nhan
Replies
2
Boosts
0
Views
4.6k
Activity
Oct ’19
Shortcuts – how do users install and how to use URL scheme ?
I would like to distribute a Shortcut with my AppleScript applet (currently the work is done by an Automator Service). I have two questions: Is it possible to automate the installation for users ? It seems that the only way a shortcut can be installed is via the Shortcuts app. So, when they ask for the Shortcut to be installed, the app must be opened and then users have to respond to the install shortcut dialog and, at least, click on Add Shortcut. Can that process be automated ? A shortcut can be run from a URL, which is very useful. The URL looks like this: shortcuts://run-shortcut?name=[name of shortcut] However, running a shortcut from a URL always opens the Shortcuts app before running the shortcut. This breaks my code which is expecting a web browser to be active. Is there a way of using at the shortcuts URL scheme run the shortcut in place i.e. without opening the shortcuts app ? Or, can the URL scheme be used to call the Shortcuts Event app ? Thanks.
Replies
2
Boosts
0
Views
1.4k
Activity
Apr ’23
Not all Apple app URL Schemes working on iOS 16
I'm building an iOS app and not all of the URL schemes are working for directing users from my app into native Apple applications. I'm using this list for guidance on relevant URL schemes, https://medium.com/@contact.jmeyers/complete-list-of-ios-url-schemes-for-apple-apps-and-services-always-updated-800c64f450f. I suspect it might not be 100% correct anymore, but I can't find a source of truth in Apple's documentation for all currently supported URL schemes. I'm trying to guide users from my app into both Voicemail (within Phone) and Voice Memos. I've added the URL schemes for both apps to the LSApplicationQueriesSchemes array in my Info.plist file, but they won't navigate when I try to open URLs to vmshow:// or voicememos://. Other URL schemes like tel / telprompt / music / message / podcast / mobilenotes all work as expected and direct my app users to the respective Apple apps. So far I've noticed at least 4 URL schemes that do not work
Replies
0
Boosts
0
Views
1.9k
Activity
Jan ’23
Url scheme of other app not defined in info.plist?
I am trying to open Fico app from my app but the url scheme is not defined for it? In lsapplicationqueries its defined as tel how do i use canopen url to open fico app?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
518
Activity
Jun ’21
How to update URL Scheme Launch target on development machine
I have implemented a custom URL scheme for my app and things were working fine until all of a sudden, launching the app via URL (In Safari for example) didn't seem to be taking any of my code changes. If I ran the app from XCode, it was fine. After beating my head against the wall for a bit, I found that the URL scheme was launching the application from my xcode Archive folder which obviously doesn't have any of my latest code. I can't figure out how to change this. Prior to this, launching via URL would launch from the build folder. I'm sure I could remove the Archive folder and re-associating but I'm hoping there is a better way to accomplish this. Thx
Replies
0
Boosts
0
Views
378
Activity
Sep ’23
Reply to MapKit JS - Snapshots
Well, the Signature is what gets base64url encoded. The actual pathing doesn't when it gets returned to the SnapshotUrl. Will try URI encoding the annotation and playing around with it. Will update this post if it works.
Replies
Boosts
Views
Activity
Oct ’20
Reply to WatchKit framework is no longer included in the iOS SDK: so what ?
I will test on this basis. Thanks.EDITED.I tested and it works without any change to the app.What has changed is the way schemes are organized.Before, there was an IOS scheme and a Watch scheme, the watch scheme including both targets : iPhone and APpleWatch.Nos, there are 2 schemes, but the watch scheme includes only the watch.However, when compiling, it creates both (and opens the 2 simulators).
Replies
Boosts
Views
Activity
Sep ’19