Search results for

“file uri scheme”

84,482 results found

Post

Replies

Boosts

Views

Activity

Reply to HELP WITH SUBSCRIPTIONS
If you are using SubscriptionStoreView with groupID overload, make sure the groupID entered is matching with the one in App Store Connect, not the one from your Xcode StoreKit configuration file. In Xcode testing, you need a StoreKit config file, and make sure to select Edit Scheme -> Options tab and select StoreKit Configuration to the correct configuration file. But this does not affect your App Store version. You might need to handle unfinished transactions. Take a look at sample code from WWDC25 on StoreKit 2.
Topic: App & System Services SubTopic: StoreKit Tags:
Jan ’26
Reply to Xcode 14 and proxies
What now always works for me now is (after weeks of real pain with SPM behind a corporate proxy): On the terminal xcodebuild -scmProvider system -resolvePackageDependencies -disablePackageRepositoryCache -workspace MyProject.xcworkspace -scheme MyScheme On XCode after the xcodebuild finishes XCode - File - Packages - Resolve Package Versions. I hope this is of any help.
Nov ’22
Reply to Apple supported way to create xcodeproject without using XCode IDE or with minimal use of XCode IDE
Thanks for the post and the ideas developer provided, really interesting. May I also provide the idea of cloning an existing package and use Swift Package Manager to do this task? Instead of generating an .xcodeproj, you define your layered architecture, targets, C++/Swift files, and compiler flags in a Package.swift file. You can write a Package.swift file in any text editor. Xcode opens Package.swift files natively. On your non-interactive CI server, you just run `xcodebuild -build -scheme MyScheme -destination Just an idea that worked for me many times. Thanks Albert  WWDR
Jun ’26
"No scheme" when i open a project in xcode
Hi,I transferred a project from one mac to another through airdrop. In the destination mac,when i open the project, it is showing No scheme.In source mac it is working fine with no error.source mac :xcode : Version 9.3.1 (9E501)swift compiler : 4.1Destination mac:xcode : 9.2 (9C40b)swift compiler : 3.2help me in this regard.
1
0
7.8k
Oct ’18
Reply to Passing URL parameters with LSApplicationQueriesSchemes
This is a new security feature of iOS 9.Any app built with SDK 9 needs to provide a LSApplicationQueriesSchemes entry in its plist file, declaring which schemes it attempts to query.<key>LSApplicationQueriesSchemes</key> <array> <string>urlscheme</string> <string>urlscheme2</string> <string>urlscheme3</string> <string>urlscheme4</string> </array>As a point of clarification, do not include :// in the string of a specific app to be whitelisted in the LSApplicationQueriesSchemes array, i.e. comgooglemaps://. If you do include :// canOpenUrl: will return NO and provide the This app is not allowed to query for scheme xxx syslog/error. However, when you make the actual call of canOpenUrl: you must still include the colon i.e. canOpenUrl:@comgooglemaps:Watch WWDC 2015 Session 703 for more information.And the following article clearly explains what to look out for:awkwardhare.com/post/121196006730/quick-take-on-ios-9-ur
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Podcasts URL scheme does not follow podcast due to HTTP URL
Hello! In our website, we allow members to follow private RSS feeds on their Podcasts app easily with the click of a button. Underneath the button is a link in the format of: podcast://example.rssurl.com # Example With this URL scheme, the Podcasts app launches correctly and shows the Follow a Show by URL input box, with the private RSS feed URL prefilled. However, the prefilled URL uses HTTP instead of HTTPS. So, the example link above (podcast://example.rssurl.com) when clicked is converted to: http://example.rssurl.com in the Follow a Show by URL input box in the Podcasts app. We noticed the HTTP form of the URL does not work well, as it sometimes fail to follow the show. Clicking on Follow would simply close the box and cause nothing to happen, not even error messages. We then tested with HTTPS by manually inserting the URL like so: https://example.rssurl.com and this would always work. However, this is not ideal as our users would have to manually paste in the URL all the time. It'd be great if
0
0
946
Sep ’23
Reply to Protecting resources in the application bundle?
You can extract from zip files in the bundle on the fly...perhaps that will slow down the curious when configured properly.Just remember that the more you want to protect it, the more work you'll have to do, so at some point you risk a counter-productive scheme that still won't stop the determined. And whatever that amounts to, I wouldn't discuss here in public 😉Listen to Eskimo on this.
Topic: Privacy & Security SubTopic: General Tags:
Apr ’16
Reply to "nw_endpoint_handler_set_adaptive…" coming from XPC service
If you want to hide these errors do this: 1 - From Xcode menu open: Product > Scheme > Edit Scheme 2 - On your Environment Variables set OS_ACTIVITY_MODE = disable
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to Cannot create a shared texture with iosurface on Apple silicon mac.
This worked for me You should be able to work around it by turning off Metal Validation in Scheme -> Edit Scheme -> Run -> Diagnostics -> Metal API Validation
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’23
Url Scheme to jump to "Add Account" in Apple Health > Health Records
Hi --Is there a url scheme to jump a user to the Add Account portion of Health Records in Apple Health app?Ie if the user wants to add their provider, I want to jump them directly to the part of Health where they can do it.I see x-apple-health:// as an option, but that doesn't jump to Add AccountThanks,kevin.
Replies
0
Boosts
0
Views
1.1k
Activity
Nov ’18
Xcode console color theme/scheme
Hi fellow Saplings,I'm wondering if there is any preference pane where I can set the colors/contents of the output console? I'd like to make my logs more readable (within XCode), and coloring would be quite nice (or changing timestamp formats, etc)...Thanks
Replies
1
Boosts
0
Views
4.8k
Activity
Aug ’17
Reply to HELP WITH SUBSCRIPTIONS
If you are using SubscriptionStoreView with groupID overload, make sure the groupID entered is matching with the one in App Store Connect, not the one from your Xcode StoreKit configuration file. In Xcode testing, you need a StoreKit config file, and make sure to select Edit Scheme -> Options tab and select StoreKit Configuration to the correct configuration file. But this does not affect your App Store version. You might need to handle unfinished transactions. Take a look at sample code from WWDC25 on StoreKit 2.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jan ’26
Reply to Target is null when adding an extension (Device Activity Monitor Extension)
Same Question: This scheme has been created for the “(null)” target. Choose Activate to use this scheme for building and debugging. Schemes can be chosen in the toolbar or Product menu. This problem caused the app extension not working. I used Xcode on another mac to create the app extesion and solve this problem. But not a good idea..
Replies
Boosts
Views
Activity
Oct ’23
Reply to Xcode 14 and proxies
What now always works for me now is (after weeks of real pain with SPM behind a corporate proxy): On the terminal xcodebuild -scmProvider system -resolvePackageDependencies -disablePackageRepositoryCache -workspace MyProject.xcworkspace -scheme MyScheme On XCode after the xcodebuild finishes XCode - File - Packages - Resolve Package Versions. I hope this is of any help.
Replies
Boosts
Views
Activity
Nov ’22
Reply to Apple supported way to create xcodeproject without using XCode IDE or with minimal use of XCode IDE
Thanks for the post and the ideas developer provided, really interesting. May I also provide the idea of cloning an existing package and use Swift Package Manager to do this task? Instead of generating an .xcodeproj, you define your layered architecture, targets, C++/Swift files, and compiler flags in a Package.swift file. You can write a Package.swift file in any text editor. Xcode opens Package.swift files natively. On your non-interactive CI server, you just run `xcodebuild -build -scheme MyScheme -destination Just an idea that worked for me many times. Thanks Albert  WWDR
Replies
Boosts
Views
Activity
Jun ’26
"No scheme" when i open a project in xcode
Hi,I transferred a project from one mac to another through airdrop. In the destination mac,when i open the project, it is showing No scheme.In source mac it is working fine with no error.source mac :xcode : Version 9.3.1 (9E501)swift compiler : 4.1Destination mac:xcode : 9.2 (9C40b)swift compiler : 3.2help me in this regard.
Replies
1
Boosts
0
Views
7.8k
Activity
Oct ’18
Reply to How to build and run a Xcode project from the CLI
Hm okay I was able make Xcode pass arguments to my program at: Product -> Scheme -> Edit Scheme (shortcut: cmd + ;) -> Arguments -> Arguments Passed On Launch. But how can I do this from the CLI then?
Replies
Boosts
Views
Activity
Jun ’24
Reply to Opening the Extension menu in the System Preferences
Any chance you could push to get the x-apple.systempreferences URL scheme properly documented? The best first step here is for you to file a bug against the docs. 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: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Passing URL parameters with LSApplicationQueriesSchemes
This is a new security feature of iOS 9.Any app built with SDK 9 needs to provide a LSApplicationQueriesSchemes entry in its plist file, declaring which schemes it attempts to query.<key>LSApplicationQueriesSchemes</key> <array> <string>urlscheme</string> <string>urlscheme2</string> <string>urlscheme3</string> <string>urlscheme4</string> </array>As a point of clarification, do not include :// in the string of a specific app to be whitelisted in the LSApplicationQueriesSchemes array, i.e. comgooglemaps://. If you do include :// canOpenUrl: will return NO and provide the This app is not allowed to query for scheme xxx syslog/error. However, when you make the actual call of canOpenUrl: you must still include the colon i.e. canOpenUrl:@comgooglemaps:Watch WWDC 2015 Session 703 for more information.And the following article clearly explains what to look out for:awkwardhare.com/post/121196006730/quick-take-on-ios-9-ur
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15
ARKit Replay Data scheme option not available in Xcode 15.0 beta
The Run scheme > Options section in Xcode 14.x used to contain the ability to utilize a recorded video from Reality Composer as the replay data for an ARSession. That option is now gone in the Xcode 15.0-beta. Is this intentional?
Replies
1
Boosts
0
Views
671
Activity
Jun ’23
Podcasts URL scheme does not follow podcast due to HTTP URL
Hello! In our website, we allow members to follow private RSS feeds on their Podcasts app easily with the click of a button. Underneath the button is a link in the format of: podcast://example.rssurl.com # Example With this URL scheme, the Podcasts app launches correctly and shows the Follow a Show by URL input box, with the private RSS feed URL prefilled. However, the prefilled URL uses HTTP instead of HTTPS. So, the example link above (podcast://example.rssurl.com) when clicked is converted to: http://example.rssurl.com in the Follow a Show by URL input box in the Podcasts app. We noticed the HTTP form of the URL does not work well, as it sometimes fail to follow the show. Clicking on Follow would simply close the box and cause nothing to happen, not even error messages. We then tested with HTTPS by manually inserting the URL like so: https://example.rssurl.com and this would always work. However, this is not ideal as our users would have to manually paste in the URL all the time. It'd be great if
Replies
0
Boosts
0
Views
946
Activity
Sep ’23
Reply to Protecting resources in the application bundle?
You can extract from zip files in the bundle on the fly...perhaps that will slow down the curious when configured properly.Just remember that the more you want to protect it, the more work you'll have to do, so at some point you risk a counter-productive scheme that still won't stop the determined. And whatever that amounts to, I wouldn't discuss here in public 😉Listen to Eskimo on this.
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’16