Search results for

file uri scheme

79,838 results found

Post

Replies

Boosts

Views

Activity

Reply to How to expose bash script errors?
Thanks for your response, Quinn.I understand that 'exit 1' and 'echo' works from a Build Phase Run Script, but my scripts are run from a scheme during Build pre-actions and post-actions. I have two schemes named Production and Test. My script accepts one parameter, PROD or TEST. This allows the script to differentiate between the Production or Test scheme. The script actually builds a .h file and must be run before the build starts. I don't think that I can use a Build Phase Run Script.I think that I define my Build pre-action script for my scheme like this:prebuildScript=${PROJECT_DIR}/BuildProcess/prebuild.sh errorFile=${buildProcessDir}prebuildErrors.txt $prebuildScript TEST 2>$errorFileThen, I could create a Build Phase Run Script that checks if the error file exists and has more than zero bytes. If the error file has content, the content could be echo'ed and exit 1 could be called. This seems cumbersome, but it may be a solution. Is there
Jan ’16
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 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
872
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
642
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