In a Xcode 12 beta 5 project on the DTK I see a My Mac (Designed for iPad) scheme in my iOS target. I'd like to run the app as an iPhone app on the DTK instead. How do I either add a My Mac (Designed for iPhone) scheme or edit the Designed for iPad scheme to iPhone?
Search results for
file uri scheme
78,485 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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:
Hi, respectable developers.I want to run both commercial and test apps at the same time by installing two identical apps on my device while running my app. These two apps have different bundle IDs.The problem is that I use the url scheme, and I would like to call this url scheme to select one of the two installed apps.Is there any way?
It seems that Safari on iOS is closer to the http redirection spec than the desktop safari. We use a 302 redirection in our load balancer that tells not to use the redirected URI for subsequent requests.Is this wanted ?EDIT: 302 or 301 redirection have the same problem, they don't use the redirected URI for subsequent requests
Topic:
Safari & Web
SubTopic:
General
Tags:
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
Topic:
App & System Services
SubTopic:
iCloud & Data
Tags:
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}}}}
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I'm struggling with maintaining source-controlled collaboration when Xcode just cannot make up its mind about how to generate the schemes. I don't edit the scheme and I get these sort of changes in git. from: to: It's pretty incomprehensible to me, but has anyone run into similar?
@rdlowrey is right ! Same domain and sub-domain for the redirect-uri works for me.
Topic:
App & System Services
SubTopic:
General
Tags:
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
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?
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))!)
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
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?
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 🙂
I want to open an app which user chose from FamilyActivityPicker. What i know is that ios needs url scheme when open another app in an app, and familyActivityPicker can give me some application info. for example, i can get selected app's title and icon through Label(:ApplicationToken). Can I get url schemes similar to this way?