Search results for

file uri scheme

79,839 results found

Post

Replies

Boosts

Views

Activity

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 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
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
156
Apr ’25
Open iOS app from another app without URL scheme
Hi,I have been wondering if is there any way i can open my iOS app from another app with the use of bundle identifier?As i have already published apps and there were no URL scheme mentioned, and it is some how app dependent and URL scheme needs to be mentioned in each and every app.And even if i add url scheme and launch update for all past apps it might not possible that each user will update it without using the new one from which i want to open past apps.Any help would be great.Thanks
4
0
19k
Jul ’17
Reply to How to open "Driver Extensions" on macOS 15 by using objective-C
Right. And that leads you to the last paragraph of Supported URL Schemes. That is, if there’s no documented way to achieve this goal, you should file an enhancement request for such a mechanism. That’s kinda the whole point of my Supported URL Schemes post. You can’t just cons up your own URL that happens to work, because if it’s not documented then it’s an implementation detail that you can’t rely on. If you do file an ER, please post the bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Drivers Tags:
Oct ’24
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
350
Sep ’23
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
363
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.5k
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.1k
Apr ’23