Search results for

“file uri scheme”

84,453 results found

Post

Replies

Boosts

Views

Activity

Reply to Fetching XCFramework dependencies
It would be safer to run this as a pre-build script so the files are copied locally before the build begins to reduce any problems with network connectivity fluctuating mid-build or a race between targets in a parallel build. You can automate this in Xcode by using a feature of the scheme called a build pre-action. When you go to edit your scheme, open the disclosure triangle on the Build action, and you'll see 3 options, Pre-actions, Build, and Post-actions. You can add a shell script to the pre-action that does the copy.
Apr ’20
Reply to Perplexity's API Xcode integration
Ah. Correct, we only support /v1 prefixes at the moment. Please file a feedback request so we can bump the priority on this. As an alternative, you could have a local service act as a passthrough so you can make that service implement /v1 and then bounce to your other URL scheme from there.
Feb ’26
Reply to how to generate the .ipa from the terminal
Hi @kandavel, I am trying to run the project using terminal instead of Xcode->Product->Archieve. We have completed the clean, build and archive successfully. When export .ipa I am getting this following error “The file “ExportOptions.plist” couldn’t be opened because there is no such file.”. When I surf in stack overflow I can’t get any idea about the plist file.For example, we have an app with the original name MyApp:xcodebuild clean -workspace MyApp.xcworkspace -scheme Developmentxcodebuild build -workspace MyApp.xcworkspace -scheme Developmentxcodebuild archive -workspace MyApp.xcworkspace -scheme Development -archivePath ~/Users/Desktop/SampleApp/MyApp.xcarchive The above code works fine. When using the below line I am getting the “ExportOptions.plist” error. xcodebuild -exportArchive -archivePath ~/Users/Desktop/SampleApp/MyApp.xcarchive -exportPath ~/Users/Desktop/SampleApp/MyApp -exportOptionsPlist ~/Users/Desktop/SampleApp/ExportOptions.plist My quest
Oct ’19
macos notes:// url scheme
I see that notes:// url will open notes.app, but what is the syntax to show a specific note? I am interested in showing notes that are not explicitly shared. For example, I have a note with title Movies and note id x-coredata://1C50AF52-CC9F-4BBE-8122-D5F713B198E8/ICNote/p22972 I tried things like: notes://Movies notes://?name=Movies notes://1C50AF52-CC9F-4BBE-8122-D5F713B198E8/ICNote/p22972 but none of those work.
3
0
4k
Mar ’22
Using Simulator in Xcode 7.3.1 causes Xcode 8 projects to lose Scheme setting
Bug 27180467 submitted:NOTE: that there is no attached file in this forum, but it was attached to the bug report.Summary:Both Xcode 7.3.1 and Xcode 8 beta 2 are installed. Running a project on the 9.3 simulator in Xcode 7.3.1 works. However, closing Xcode and the simulator, then opening a different project in Xcode 8 beta 2 results in a loss of scheme setting, as shown in the attached file NoScheme.png.Steps to Reproduce:1. Start with Xcode 7.3.1 installed2. Install Xcode 8 beta 2 a. download b. drag Xcode-beta from Downloads folder to Applications folder c. run Xcode-beta3. Create an iOS project in Xcode 8 beta 24. Close Xcode 8 beta 25. Open Xcode 7.3.16. Run an iOS project (a different project not related in any way to the one just created in Xcode 8 beta 2) on a simulator (for example the iPad 2 (9.3) simulator)7. Exit Xcode 7.3.18. Exit Simulator9. Run Xcode 8 beta 210. Load the project created in step 3Expected Results:The Xcode 8 beta 2 project's Scheme should still
9
0
2.4k
Jul ’16
Reply to Unable to see source editor extension commands in Xcode 16
Geting Xcode to recognise your source editor extension can be tricky. There are two cases to consider: Debugging Production I recommend you start with the debugging case. When you create a new source editor extension target, Xcode create a scheme for it. That scheme isn’t very useful out of the box. Do this: Use your primary copy of Xcode for this work. Ideally it’d be the one in the Applications folder. Select the extension scheme in Product > Scheme. Choose Product > Scheme > Edit Scheme. In the Run action, switch to the Info tab. On the Executable popup, choose Other and select your primary copy of Xcode. Make sure Debug Executable is not checked. Close the sheet and then choose Product > Run. Xcode should launch a second copy of itself. In the Dock, you’ll see the icon with an orangey tint. Bring that to the front. In this copy, open a test project and navigate to a source file. Your extension should be visible at the bottom of the
Mar ’25
I am doing apple sign in with js. When click on continue with apple id after putting the credentials for next step. It doesnot redirects to the redirect uri. I can help with my client Id also if you need?
I am doing apple sign in with js. When click on continue with apple id after putting the credentials for next step. It doesnot redirects to the redirect uri. I can help with my client Id also if you need?I can see the apple authorize api is returning token as well as code in the network. But still it is not redirecting to the redirect uri. Why?? And also some time shows 403 forbidden. Am i missing something here?? clientId : clientId, scope : email name, redirectURI : https://www.publicissapient.com, responseMode:form_post, responseType:code id_token, state : 'DE', usePopup : trueCredentials i can provide if you need?
0
0
719
Mar ’20
Reply to Xcode copy release build signed target
Thank you for explaining. We discussed your case here and we recommend doing an archive build and then copying the app out of the archive. We expect this will give you the best results using code paths that are currently supported. You can copy the app out of the .xarchive by changing the file name ending from .xarchive to .zip. Then you can open the .zip file and copy the app into the Applications folder. Note ~ Searching on the web I found some folks talking about duplicating the run Scheme and changing the Build Configuration to Release and using the result from that. That may work in some cases, but it may not produce correct results in others. This is not a supported code path. We do not recommend using this duplicate Scheme approach.
Mar ’25
Reply to Fetching XCFramework dependencies
It would be safer to run this as a pre-build script so the files are copied locally before the build begins to reduce any problems with network connectivity fluctuating mid-build or a race between targets in a parallel build. You can automate this in Xcode by using a feature of the scheme called a build pre-action. When you go to edit your scheme, open the disclosure triangle on the Build action, and you'll see 3 options, Pre-actions, Build, and Post-actions. You can add a shell script to the pre-action that does the copy.
Replies
Boosts
Views
Activity
Apr ’20
Reply to Xcode 12.5.1 (12E507) Unable to add GPS Exchange to project
It completely works on Xcode12* once deleting Xcode13. But in my case, temporarily storing Xcode13 in Trash without deleting, GPX files showed up. If they don’t show up or Simulate Location button itself is not displayed, try edit scheme > options > default location > choose gpx file and build.
Replies
Boosts
Views
Activity
Oct ’21
using prefs:root=WIFI url scheme to access wifi settings
Hi,I'm using prefs:root=WIFI url scheme in my app with prefs entery in info.plist and it works great .Does some uses this api? I just want to make sure its not a private Api...Thanks,Marat
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
1.4k
Activity
Dec ’15
Reply to Launch Apple Maps app with a destination and "No Highways" automatically selected?
Not all the Map app settings are surfaced in the URL scheme so please file a bug report asking for this feature. I know it's not what you're looking for but does dirflg=w give you an appoximation of what you want to see? -M
Replies
Boosts
Views
Activity
Nov ’16
Reply to Perplexity's API Xcode integration
Ah. Correct, we only support /v1 prefixes at the moment. Please file a feedback request so we can bump the priority on this. As an alternative, you could have a local service act as a passthrough so you can make that service implement /v1 and then bounce to your other URL scheme from there.
Replies
Boosts
Views
Activity
Feb ’26
Reply to how to generate the .ipa from the terminal
Hi @kandavel, I am trying to run the project using terminal instead of Xcode->Product->Archieve. We have completed the clean, build and archive successfully. When export .ipa I am getting this following error “The file “ExportOptions.plist” couldn’t be opened because there is no such file.”. When I surf in stack overflow I can’t get any idea about the plist file.For example, we have an app with the original name MyApp:xcodebuild clean -workspace MyApp.xcworkspace -scheme Developmentxcodebuild build -workspace MyApp.xcworkspace -scheme Developmentxcodebuild archive -workspace MyApp.xcworkspace -scheme Development -archivePath ~/Users/Desktop/SampleApp/MyApp.xcarchive The above code works fine. When using the below line I am getting the “ExportOptions.plist” error. xcodebuild -exportArchive -archivePath ~/Users/Desktop/SampleApp/MyApp.xcarchive -exportPath ~/Users/Desktop/SampleApp/MyApp -exportOptionsPlist ~/Users/Desktop/SampleApp/ExportOptions.plist My quest
Replies
Boosts
Views
Activity
Oct ’19
macos notes:// url scheme
I see that notes:// url will open notes.app, but what is the syntax to show a specific note? I am interested in showing notes that are not explicitly shared. For example, I have a note with title Movies and note id x-coredata://1C50AF52-CC9F-4BBE-8122-D5F713B198E8/ICNote/p22972 I tried things like: notes://Movies notes://?name=Movies notes://1C50AF52-CC9F-4BBE-8122-D5F713B198E8/ICNote/p22972 but none of those work.
Replies
3
Boosts
0
Views
4k
Activity
Mar ’22
Using Simulator in Xcode 7.3.1 causes Xcode 8 projects to lose Scheme setting
Bug 27180467 submitted:NOTE: that there is no attached file in this forum, but it was attached to the bug report.Summary:Both Xcode 7.3.1 and Xcode 8 beta 2 are installed. Running a project on the 9.3 simulator in Xcode 7.3.1 works. However, closing Xcode and the simulator, then opening a different project in Xcode 8 beta 2 results in a loss of scheme setting, as shown in the attached file NoScheme.png.Steps to Reproduce:1. Start with Xcode 7.3.1 installed2. Install Xcode 8 beta 2 a. download b. drag Xcode-beta from Downloads folder to Applications folder c. run Xcode-beta3. Create an iOS project in Xcode 8 beta 24. Close Xcode 8 beta 25. Open Xcode 7.3.16. Run an iOS project (a different project not related in any way to the one just created in Xcode 8 beta 2) on a simulator (for example the iPad 2 (9.3) simulator)7. Exit Xcode 7.3.18. Exit Simulator9. Run Xcode 8 beta 210. Load the project created in step 3Expected Results:The Xcode 8 beta 2 project's Scheme should still
Replies
9
Boosts
0
Views
2.4k
Activity
Jul ’16
Reply to Unable to see source editor extension commands in Xcode 16
Geting Xcode to recognise your source editor extension can be tricky. There are two cases to consider: Debugging Production I recommend you start with the debugging case. When you create a new source editor extension target, Xcode create a scheme for it. That scheme isn’t very useful out of the box. Do this: Use your primary copy of Xcode for this work. Ideally it’d be the one in the Applications folder. Select the extension scheme in Product > Scheme. Choose Product > Scheme > Edit Scheme. In the Run action, switch to the Info tab. On the Executable popup, choose Other and select your primary copy of Xcode. Make sure Debug Executable is not checked. Close the sheet and then choose Product > Run. Xcode should launch a second copy of itself. In the Dock, you’ll see the icon with an orangey tint. Bring that to the front. In this copy, open a test project and navigate to a source file. Your extension should be visible at the bottom of the
Replies
Boosts
Views
Activity
Mar ’25
Reply to Can't debug on watchOS 2
Select the phone scheme first, then select the watch scheme.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’15
I am doing apple sign in with js. When click on continue with apple id after putting the credentials for next step. It doesnot redirects to the redirect uri. I can help with my client Id also if you need?
I am doing apple sign in with js. When click on continue with apple id after putting the credentials for next step. It doesnot redirects to the redirect uri. I can help with my client Id also if you need?I can see the apple authorize api is returning token as well as code in the network. But still it is not redirecting to the redirect uri. Why?? And also some time shows 403 forbidden. Am i missing something here?? clientId : clientId, scope : email name, redirectURI : https://www.publicissapient.com, responseMode:form_post, responseType:code id_token, state : 'DE', usePopup : trueCredentials i can provide if you need?
Replies
0
Boosts
0
Views
719
Activity
Mar ’20
Reply to XCTestPlan environment variable not retrieved in xcode 26
Ok, I think I got it to work. I think I was using the wrong build scheme. It appears to work when selecting the test scheme in xcode before running the tests. I think previously xcode would automatically switch schemes, or at least a prompt would appear asking if I wanted to switch schemes, I could be wrong, though. Thanks.
Replies
Boosts
Views
Activity
Oct ’25
Reply to Xcode copy release build signed target
Thank you for explaining. We discussed your case here and we recommend doing an archive build and then copying the app out of the archive. We expect this will give you the best results using code paths that are currently supported. You can copy the app out of the .xarchive by changing the file name ending from .xarchive to .zip. Then you can open the .zip file and copy the app into the Applications folder. Note ~ Searching on the web I found some folks talking about duplicating the run Scheme and changing the Build Configuration to Release and using the result from that. That may work in some cases, but it may not produce correct results in others. This is not a supported code path. We do not recommend using this duplicate Scheme approach.
Replies
Boosts
Views
Activity
Mar ’25
Reply to Stuck in Sign in With Apple modal flow
Did you try making sure that the redirect uri has https:// in front of it? I was stuck with this same issue until I came across this post https://forums.developer.apple.com/thread/130197. Now, the popup is closing, and I'm getting the DOM events to fire. 😅
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’20
Reply to Unable to submit watch OS 2 (Swift 2) for internal testing via TestFlight
Are you trying to submit the archive build using the Watch scheme or the iOS scheme?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15