Search results for

file uri scheme

78,485 results found

Post

Replies

Boosts

Views

Activity

Reply to Playing FairPlay streams with TVJS
That's how I did it initially. I then changed it to be like so:mediaItem.loadAssetID = getFPSAssetId; mediaItem.loadCertficate = getCertificate; mediaItem.loadKey = getFPSKey; where getFPSAssetId, getCertificate, getFPSKey are defined at the top of the JS page like so: function getFPSAssetId(uri, callback) { console.log(===== HERE === ); var assetID = fpsMgr.assetIDFromURI(uri); if (assetID != null) { console.log(======= [FPS] =============== [FPS]: Successfully parsed asset ID: + assetID); callback(assetID); } else { console.log(=============== [FPS]: Error parsing asset ID from URI: + uri); callback(null, Error parsing asset ID from URI: + uri); } }; function getCertificate(uri, callback) { console.log(==== Getting the certificate); var certUrl = fpsMgr.getFPSCertURL(); SkyChnlApi.debugLog(======= [FPS] certUrl: + certUrl); http.apiRequest(certUrl, GET, true, , function(certRequest) { if (certRequest.status == 200) { console.log(Received cer
Topic: App & System Services SubTopic: General Tags:
Feb ’16
Reply to SwiftData ModelContext Fetch Crashing
I have the exact same error. For me it does work when building for the iOS 17.5 simulator, and not for the iOS 18 simulator. *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'The specified URI is not a valid Core Data URI: x-coredata:///Workout/5F9352C2-50DA-422B-BDF6-C3BA3AD73067
Jun ’24
Reply to Xcode 11.1 code coverage data from xccov
Getting same kind of issue for code coverage report.Please provide the solution.Using Xcode 11.2.1.xccov[4508:118225] Requested but did not find extension point with identifier Xcode.IDEFoundation.IDEResultKitSerializationConverterError: Error Domain=XCCovErrorDomain Code=0 Failed to load coverage report for scheme action 'Testing with scheme' in result bundle UserInfo={NSLocalizedDescription=Failed to load coverage report for scheme action 'Testing with scheme' in result bundle, NSUnderlyingError=0x7fd4f401f3f0 {Error Domain=NSCocoaErrorDomain Code=260 The file “action.xccovreport” couldn’t be opened because there is no such file. UserInfo={NSFilePath=/tmp/action.xccovreport, NSUnderlyingError=0x7fd4f4022980 {Error Domain=NSPOSIXErrorDomain Code=2 No such file or directory}}}}
Nov ’19
Crash on Edit Scheme
Xcode crashes on Edit Scheme in 13.2.1 and it is reproducible in every scenario I could think of. I even tried reinstalling. I found something online that says to try without two screens, still crashes. I also tried something from a previous thread about Xcode 7 to try defaults delete com.apple.dt.Xcode in terminal. Still Crashing. Is there anything else that can be done or do I wait for it to be patched? full report attached xcode_crash_on_edit_scheme.txt
1
0
453
Feb ’22
How to specify what scheme is used by content previews
I have created custom schemes to setup my builds for different Firebase environments. These work perfectly for simulator builds and even for XCode Cloud builds. Sadly, the schemes are totally ignored when previewing content. My question is simple, do previews use schemes and if so how can I specify what scheme is used?
0
0
337
Oct ’22
calshow openURL scheme allowed?
Is using the calshow openURL scheme allowed in situations where it's useful?It's not in the Apple URL Scheme Reference but that might just be outdated.Since it's just a URL I wouldn't see it as an API, thus not as a private API either.But still, it'd be nice to get a clear statement on that.Code would look like this:UIApplication.shared.openURL(URL(string: calshow:(event.startDate.timeIntervalSinceReferenceDate))!)
0
0
2.8k
Nov ’16
Preventing building of all schemes when running
I have a workspace / project with multiple schemes. When I go to run my current scheme, the middle status text bar shows that Xcode is going through each scheme and building it. I am trying to reduce build time and it seems that it is cycling through each one (sometimes endlessly).Running Version 9.1 (9B55).See the following video, it seems to repeat and start over from the beginning for the multiple schemes:youtu.be/EbA2VcJvVns
0
0
452
Nov ’17
Custom url scheme for key url
We are using custom url sheme for the key url eg. myscheme://twelve instead of skd://twelve. This (custom scheme) works on iOS. But it throwing up an error in Safari. Changing the scheme back to skd works in Safari. It there any limitation on the custom scheme that is supported by Safari? Or is there a method to register such custom sheme?
1
0
2.2k
Oct ’16
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
654
Oct ’17