Search results for

“xcode github”

95,429 results found

Post

Replies

Boosts

Views

Activity

Reply to In-app purchase restore not work in 10.2.1
1) what is the error returned in restoreCompletedTransactionsFailedWithError2) Can you comment on this in my earlier post:One thing you wrote: We installed our app(v1.x) from the App store and then installed (v2.x) from Test filght. In this version, the buy In-app purchase and Restore options were provided.Installing an app over another app rather than deleting the first version will change the code that is run (i.e. you will get the options in v2.x) but it may not change the signature of the app - that is, the app installed from Xcode may think it was installed from the App Store and seek out the production environment rather than the sandbox environment for all IAP functions.
Topic: App & System Services SubTopic: StoreKit Tags:
Mar ’17
Reply to code signing - old Xcode, old Mac, new iOS
There’s two parts to this: Signing an app for iOS 15 Xcode support for iOS 15 The latter requires Xcode 13, which means at least macOS 11.3 (the table in Developer > Support > Xcode is something I like to keep handy). There’s no supported way around this. When it comes to code signing, the codesign tool is part of macOS and thus the code signature format you get is determined by your macOS version (Xcode only comes into play based on the arguments it passes to codesign). And AFAIK the macOS 10.15.x codesign is incapable of producing DER entitlements, which is what’s required by iOS 15 [1]. Honestly, the best way forward here is to get a new Mac. Everything else either puts your on an unsupported path, or will burn through a lot of your time, or some combination of the two. For example, macOS 10.15.x can run macOS 11 in a VM and so you could fire up a VM just to sign your code. However, that’s a significant amount of hassle
Topic: Code Signing SubTopic: General Tags:
Nov ’21
Reply to iOS 13.6.1
I too am having this issue. I have rebooted the device as well as my machine. Xcode version: 11.7 (11E801a) OS: 10.15.4 (19E266) Catalina Here is the error displayed in the Devices window: The current device configuration is unsupported. This iPhone X (Model A1865, A1901, A1902,… To run on this device, please update to a version of Xcode that supports iOS 13.6.1. You can download Xcode from the Mac App Store or the Apple Developer website. In the Issue Details: Details The current device configuration is unsupported. This iPhone X (Model A1865, A1901, A1902, A1903) is running iOS 13.6.1 (17G80), which is not supported by Xcode 11.7. Domain: com.apple.dtdevicekit Code: 601 Recovery Suggestion: To run on this device, please update to a version of Xcode that supports iOS 13.6.1. You can download Xcode from the Mac App Store or the Apple Developer website. User Info: { DVTRadarComponentKey = 487927; DeviceType = iPhone10,3; }- Unable
Sep ’20
Reply to iOS IKEv2 Vpn Connection
can you upload the Xcode project to GitHub?Please drop me a line via email (my email address is in my signature).Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
May ’18
Reply to NSDockTilePlugin tutorial....
After further Googling I found a github repo that contained a DockTilePlugin Sample that was 7 years old. I have updated the sample so that it builds and runs with XCode 11 and enhanced it slightly to suit my needs, as I wanted to be able to dynamically update the App's DockTile menu when the app isn't running.I hope others find this update sample useful.The updated project, with the original author's ReadMe.rtf can be found on GitHub here -https://github.com/CartBlanche/MacDockTileSampleIf someone with more Objective C experience can look over the code and tell me if there are better ways of doing things, I'll update the code, or send me a PR.
Topic: UI Frameworks SubTopic: AppKit Tags:
Dec ’19
Reply to Xcode 11 beta 5 crashes as soon as open it.
Yes, tried that and the Version 11.3 beta (11C24b), also update Catalina to 10.15.2 Beta (19C46a).I opened at DTS inciident and they were no help.Using a different Catalina user account did not help but creating a new APFS volume, installing Mohave there with latest GM Xcode, (slack, github etc) then Shutdown and reboot into that to use Xcode lets me build again.
Nov ’19
Reply to Xcode Cloud is not able to access swift-gen generated file
I'm also experiencing the issue, when digging into the logs a bit further I noticed that the file I generate in the build command is failing to be generated. This doesn't happen locally or when building in Github Actions - so seems specific to Xcode Cloud? I wonder if it is to due with the write permissions of the pluginWorkDirectory being different in Xcode Cloud or because of where DerivedData is located... Any suggestions on what steps I could add to the pre_xcodebuild.sh script would be really helpful!
Feb ’23
Reply to Developing for iOS on multiple machines
Quoting the Support/Code-Signing page:Frequently Asked QuestionsHow do I transfer my code signing certificates and provisioning profiles to another Mac? Review the instructions in Export signing certificates and provisioning profiles.For keeping the projects in sync, look into using 'source control', built into Xcode - see Xcode Help, and:h ttps://medium.com/swlh/how-to-use-github-with-xcode11-8a93b64ff1bc
Jun ’20
Reply to In-app purchase restore not work in 10.2.1
1) what is the error returned in restoreCompletedTransactionsFailedWithError2) Can you comment on this in my earlier post:One thing you wrote: We installed our app(v1.x) from the App store and then installed (v2.x) from Test filght. In this version, the buy In-app purchase and Restore options were provided.Installing an app over another app rather than deleting the first version will change the code that is run (i.e. you will get the options in v2.x) but it may not change the signature of the app - that is, the app installed from Xcode may think it was installed from the App Store and seek out the production environment rather than the sandbox environment for all IAP functions.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Mar ’17
Reply to Use native Swift API for HTTP request with auth proxy
Made a Swift TLS Client. Please start of GitHub. Literally the only swift tls client on GitHub. https://github.com/ak3zaidan/Swift-TLS-Client
Replies
Boosts
Views
Activity
Mar ’25
Reply to WKWebView: build fail for iOS 10.2. XCode9 beta 6
The issue is not fixed in the official relase of Xcode 9 yet, however, this is only an issue if you add a WKWebView in your storyboard. If you instead, create and add a WKWebView as a subview in code, everything will work just fine and you can target iOS versions below 11 (e.g. 10.x).
Replies
Boosts
Views
Activity
Sep ’17
Reply to code signing - old Xcode, old Mac, new iOS
There’s two parts to this: Signing an app for iOS 15 Xcode support for iOS 15 The latter requires Xcode 13, which means at least macOS 11.3 (the table in Developer > Support > Xcode is something I like to keep handy). There’s no supported way around this. When it comes to code signing, the codesign tool is part of macOS and thus the code signature format you get is determined by your macOS version (Xcode only comes into play based on the arguments it passes to codesign). And AFAIK the macOS 10.15.x codesign is incapable of producing DER entitlements, which is what’s required by iOS 15 [1]. Honestly, the best way forward here is to get a new Mac. Everything else either puts your on an unsupported path, or will burn through a lot of your time, or some combination of the two. For example, macOS 10.15.x can run macOS 11 in a VM and so you could fire up a VM just to sign your code. However, that’s a significant amount of hassle
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’21
Reply to iOS 13.6.1
I too am having this issue. I have rebooted the device as well as my machine. Xcode version: 11.7 (11E801a) OS: 10.15.4 (19E266) Catalina Here is the error displayed in the Devices window: The current device configuration is unsupported. This iPhone X (Model A1865, A1901, A1902,… To run on this device, please update to a version of Xcode that supports iOS 13.6.1. You can download Xcode from the Mac App Store or the Apple Developer website. In the Issue Details: Details The current device configuration is unsupported. This iPhone X (Model A1865, A1901, A1902, A1903) is running iOS 13.6.1 (17G80), which is not supported by Xcode 11.7. Domain: com.apple.dtdevicekit Code: 601 Recovery Suggestion: To run on this device, please update to a version of Xcode that supports iOS 13.6.1. You can download Xcode from the Mac App Store or the Apple Developer website. User Info: { DVTRadarComponentKey = 487927; DeviceType = iPhone10,3; }- Unable
Replies
Boosts
Views
Activity
Sep ’20
Reply to iOS IKEv2 Vpn Connection
can you upload the Xcode project to GitHub?Please drop me a line via email (my email address is in my signature).Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Replies
Boosts
Views
Activity
May ’18
Reply to How to share bug reproducing data in AppleDeveloper Forums?
That should be possible in GitHub.
Replies
Boosts
Views
Activity
Jun ’22
Reply to NSDockTilePlugin tutorial....
After further Googling I found a github repo that contained a DockTilePlugin Sample that was 7 years old. I have updated the sample so that it builds and runs with XCode 11 and enhanced it slightly to suit my needs, as I wanted to be able to dynamically update the App's DockTile menu when the app isn't running.I hope others find this update sample useful.The updated project, with the original author's ReadMe.rtf can be found on GitHub here -https://github.com/CartBlanche/MacDockTileSampleIf someone with more Objective C experience can look over the code and tell me if there are better ways of doing things, I'll update the code, or send me a PR.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Dec ’19
Reply to Xcode 11 beta 5 crashes as soon as open it.
Yes, tried that and the Version 11.3 beta (11C24b), also update Catalina to 10.15.2 Beta (19C46a).I opened at DTS inciident and they were no help.Using a different Catalina user account did not help but creating a new APFS volume, installing Mohave there with latest GM Xcode, (slack, github etc) then Shutdown and reboot into that to use Xcode lets me build again.
Replies
Boosts
Views
Activity
Nov ’19
Reply to Xcode Cloud is not able to access swift-gen generated file
I'm also experiencing the issue, when digging into the logs a bit further I noticed that the file I generate in the build command is failing to be generated. This doesn't happen locally or when building in Github Actions - so seems specific to Xcode Cloud? I wonder if it is to due with the write permissions of the pluginWorkDirectory being different in Xcode Cloud or because of where DerivedData is located... Any suggestions on what steps I could add to the pre_xcodebuild.sh script would be really helpful!
Replies
Boosts
Views
Activity
Feb ’23
Reply to Xcode preparing to erase and reinstall my hard drive
What are source control accounts? and ssh keys? If you don't know, you are probably not using them! They appear in Xcode Settings > Accounts (under the Apple IDs section). Source Control (e.g.): GitHub Bitbucket ssh keys (in this context): Used to secure the connection to the source control account
Replies
Boosts
Views
Activity
Nov ’20
Reply to XCode Cloud can't access to Azure git repository
Same. All the more frustrating because, as best I understand it, Microsoft is actually running a lot (all?) of their git repos (and 100% certainly) their build agents on GitHub under the hood — they’ve just wrapped it in their own UI. Surely it wouldn’t be difficult to extend support though, for Xcode cloud.
Replies
Boosts
Views
Activity
Apr ’23
Reply to Developing for iOS on multiple machines
Quoting the Support/Code-Signing page:Frequently Asked QuestionsHow do I transfer my code signing certificates and provisioning profiles to another Mac? Review the instructions in Export signing certificates and provisioning profiles.For keeping the projects in sync, look into using 'source control', built into Xcode - see Xcode Help, and:h ttps://medium.com/swlh/how-to-use-github-with-xcode11-8a93b64ff1bc
Replies
Boosts
Views
Activity
Jun ’20
Reply to xCode Version 15.0 - Simulator Screen Shots for 5.5 inch iPhone
For X-Code 15: X Code => Settings => Platforms Tap the + in the lower left. Choose iOS 15 and install. From there, launch the 8Plus (or desired simulator) under the iOS 15 > option.
Replies
Boosts
Views
Activity
Mar ’24
Reply to Xcode unsupported iOS version after beta update 14.5 error 18e5140k
Is there anyone who can run iOS 14.7 on Xcode to check an app made with unity? On the GitHub url shared with a user above, there's no file for iOS 14.7. Because Apple asks me to run an app with a ios14.7 device before app publishment, would somebody gives me how to address this problem??
Replies
Boosts
Views
Activity
Jul ’21