Search results for

file uri scheme

78,508 results found

Post

Replies

Boosts

Views

Activity

Reply to Can I generate a docc archive directly from Package.swift?
xcodebuild docbuild still works with a Package.swift file. You'll need to add a -scheme argument to tell xcodebuild which target to build; you can run xcodebuild -list to see the list. For example, you can run xcodebuild docbuild -scheme MyPackage to build a DocC Archive for the MyPackage scheme. The archive bundle will appear in your Derived Data directory (for example, ~/Library/Developer/Xcode/DerivedData/MyPackage-[hash]/Build/Products/Debug/MyPackage.doccarchive).
Jun ’21
Reply to link to open endpoint security extensions via swiftUI
My general advice on this topic is in Supported URL Schemes. does document some URL schemes for ES clients but AFAICT that doesn’t include the ones you were previously using. If you need URL schemes beyond those currently documented, I recommend that you file an enhancement request describing your requirements. Please post your bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
Sep ’24
How to get Client ID and Redirect URI when implementing Sign in with Apple on another platform?
Hi Apple,I am attempting to get Sign in with Apple working in the Unity editor. I intend to use Unity's REST functions to facilitate this. I have found an article (linked below) that describes Incorporating Sign in with Apple into Other Platforms. I need to either generate or find my program's client_id. The article says client_id: (Required) The developer’s client identifier, as provided by WWDR.. I not understand what WWDR is or how I can use it to get my client_id, I would love your help on this.https://developer.apple.com/documentation/signinwithapplejs/incorporating_sign_in_with_apple_into_other_platformsThere don't seem to be any community guides on how to function as another platform, but there are some on building a web app. To function as a web app all the guides say that I need to create a Service ID. To add Sign in with Apple functionality to that ID I need to give it a web domain that will use Sign in with Apple. I am trying to build a Unity app, so this mandatory field seems strange to me, I am n
2
0
6.3k
Nov ’19
How do you configure multiple iOS URL Schemes
Is it possible to register multiple URL schemes that are associated with different app ids for the same app. For example I have separate apps per environment of my application each with their own unique bundle id. E.Gcom.test.app-dev (testapp-dev://) com.test.app-qa (testapp-qa://) com.test.app (testapp://)If I want to launch the dev app from a url, I would use want to use testapp-dev://
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
816
Jan ’20
Reply to Callkit auto call mute/unmute many times in iOS 17
we are having the same issue on our side on iOS 17, action was only requested once but after that call kit is triggering many times the provider performSetMuted function. Tested on Xcode 14.1 and Xcode 15.0 and we have this issue on both versions. [DEBUG] [6be8b000] 20:35:56.477: ims: ims.call.imscallkitmanager -[IMSCallKitManager requestAction:actionName:call:completion:] (204): call (uri=tel:6910, callId=sca-6d020a75-d04f400-no-ip), actionName: CXSetMutedCallAction [INFO ] [6be8b000] 20:35:56.568: ims: ims.call.imscallkitmanager -[IMSCallKitManager provider:performSetMutedCallAction:] (1029): call (uri=tel:6910, callId=sca-6d020a75-d04f400-no-ip), setMuted: NO, completion block: [INFO ] [6be8b000] 20:35:56.574: ims: ims.call.imscallkitmanager -[IMSCallKitManager provider:performSetMutedCallAction:] (1029): call (uri=tel:6910, callId=sca-6d020a75-d04f400-no-ip), setMuted: YES, completion block: (null) [INFO ] [6be8b000] 20:35:56.593: ims: ims.call.imscallkitmanager -[IMSCallKitMan
Topic: App & System Services SubTopic: General Tags:
Oct ’23
xcstrings and scheme localization debugging issue
Hello, When I use xcstrings in my app, and I have my scheme's localization debugging enabled (when it renders all caps for any non-localized text). Prior to converting to xccstrings, my app shows non caps text for everything. After I convert to xcstrings, some of my app shows caps text for some items. I can see the keys in the xccstrings that I expect, so I do not think it is a bug in the conversion. Could it be a bug in the renderer somehow? FB13261276 Thanks! -- Greg
0
0
621
Oct ’23
Reply to SK..R1 Integrity failure in KSM
Probably not the same issue and maybe an obvious thing to have confirmed already, but just in case :-).The content type of the license request is application/x-www-form-urlencoded, but the FPS sample doesn't URI encode the SPC message.The HTTP framework we used on the KSM side automatically URI decoded the received parameters.Because of that invalid data was passed to the KSM.To fix we use encodeURIComponent() on the SPC message before sending.
Topic: Media Technologies SubTopic: Streaming Tags:
Apr ’16
Apple's tvOS URL schemes?
I've got an app that lets people load user-defined content into it, and displays that content (for example for e-signage applications, interactive kiosks, et cetera).One of the things I'd like to do in it is put up a description of a podcast, and then put a button on the screen that tells Apple's Podcasts app to open it.I tried to do this via [[UIApplication sharedApplication] openURL: ]; with the URL for the podcast from the iTunes store, based on the claim I saw elsewhere that that works on iOS. It did not work for me on tvOS (9.2b2).I know our apps can provide custom URL schemes, and supposedly the openURL: method will work for one third-party app to open another third-party app. But right now I'm more interested in opening things in Apple's own apps (music, tv, movies, trailers, podcasts, and the app store).Do the tvOS versions of Apple's apps support any URL schems at all right now? Are they documented anywhere?
2
0
2.4k
Jan ’16