Search results for

“xcode github”

97,550 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode 13.3 SwiftPM.SPMRepositoryError error 5
You need to generate a new key since the one Xcode auto-generates is not supported... ssh-keygen -t ecdsa -C our_email pbcopy < ~/.ssh/id_ecdsa.pub Go to https://github.com/settings/ssh/new, paste the key and save. Go to Xcode -> Preferences -> Sign into the github account if not already. Select SSH for Clone using For SSH Key select id_ecdsa.
Mar ’22
Reply to Xcode Server no longer includes the capacity to host Git repositories.
>it's pretty straightforward to just use git and ssh on the server. I never used the xcode server option for it - are you really losing anything (besides time having to set up something new)? I have a ton of self hosted git repositories set up on my Xcode Server and having to set up remotes elsewhere or to configure them from the command line is a a time consuming task. Just a coulple clicks in the GUI was pretty nice.>But I am sincerely curious. Mostly just want to encourage you to look into setting it up yourself as a git+ssh type thing before you feel like you have no option besides switching to paid setup.Paying Github to host private repositories was never going to happen from me. But don't kid yourself, they made a deal with them for this integrated setup in Xcode 9 and money was involved. Self-hosting repositories is an easy way to not pay Github, so I bet they agreed with them to remove the feature in exchange for that open in xcode stuff on
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’17
Reply to Badger code sample does not run on iOS 10 when compiled on El Capitan?
Thanks for your answer.Yes it is an iPad mini 2 - forgot to add the number at the end. The error I get consistently, both in the simulator and on the device is EXC_BAD_ACCESS at line 38 of ViewController.swift for Thread 1 with code=1, address = 0x0. I am running OS X v 10.11.5. I should say that I have both Xcode 7.3.1 and Xcode 8 beta installed. Since this error seems to be uncommon, I'll try a fresh install.
Topic: Graphics & Games SubTopic: SceneKit Tags:
Jun ’16
Reply to Building macOS with App Groups using external CI/CD
I'm also experiencing this issue so I figured I'd throw my own details on here in case they help. I am building a macOS System / Network Extension. I can build locally with both Development and Developer ID keys using XCode. As soon as I move towards xcodebuild (locally), I need to have the provisioning profile installed by downloading it from the Developer Portal and double-clicking it, etc. xcodebuild -scheme Extension -configuration Release -destination generic/platform=macOS The exact problem rookuuu has happens when I attempt to build in my CI pipeline with the exact same provisioning profile and key. Specifically GitHub Actions + GitHub-Hosted Runners using GitHub instructions for installing profiles. If I remove the profiles locally on my machine and attempt to install the provisioning profile using GitHub instructions (rename {ProfileName}.provisionprofile to {ProfileGuid}.mobileprovision and add to ~/Library/MobileDevice/Provisioning Profiles) it has the s
Jun ’23
Reply to Custom Errors
I tried the code you last posted in new project (both Xcode 8.3.3 and Xcode 9, Swift 3.x and 4) and it works fine. At this point, I'd say the problem is not the ExamineError declaration, but something else is going wrong in your project. If you're using a current version of Xcode, I'd suggest you submit a bug report and see what comes back.Incidentally, just for interest, you could try:catch { let e = error as! ExamineError print (type(of: e)) }and see what it says.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’17
Reply to Problems after updating to Xcode 13.3
UPDATE 3: The problem with iCloud returned. Changing my Apple ID password doesn't seem to have any effect. Every time I restart the mac and log in, iCloud asks me to log in like it's the first time. Mail no longer has the password for my email account. Added to this is the verification of Xcode as well as other applications. Xcode keeps asking me to install components like it's the first time. On Xcode I also have to reconnect to my gitlab and github accounts. This is really hell!!! It's a nightmare !!!
Mar ’22
Reply to Xcode 8 release crashes on old xib files
I have the exact same issue. Any help would be greatly appreciated!If it''s of any help, my Xcode crash log is overe here gist [dot] github [dot] com [slash] thomax [slash] b338a8d02fb0c230fb1ec8e6cda41be9. Sorry for mangling that URL, but it seems the only way to avoid the moderation flag, and moderation around here seems to take a while.
Sep ’16
Xcode beta that I downloaded from the Apple Developer porter is modified to be ciontrolled my a remote user and do some nast things to my machine. What should I do with this. You guys need to see what these hackers can do to our x-code. I have a copy I
Hi Xcode DeveloperI need some help. Can someone who can fix xcode exploits give me somewhere to send this, it's nasty. I have an xcode server that Ineed to keep running
0
0
284
Jul ’17
Reply to How can I compile this app?
The missing files are found in a couple of Git submodules which don’t seem to get cloned if you use GitHub’s Open with Xcode or Download ZIP options, or a normal git clone command. It works if you use git clone --recursive like this: $ git clone --recursive git@github.com:macmade/QEMU-Manager.git
Jan ’22
Reply to Xcode 13.3 SwiftPM.SPMRepositoryError error 5
You need to generate a new key since the one Xcode auto-generates is not supported... ssh-keygen -t ecdsa -C our_email pbcopy < ~/.ssh/id_ecdsa.pub Go to https://github.com/settings/ssh/new, paste the key and save. Go to Xcode -> Preferences -> Sign into the github account if not already. Select SSH for Clone using For SSH Key select id_ecdsa.
Replies
Boosts
Views
Activity
Mar ’22
Reply to Xcode Server no longer includes the capacity to host Git repositories.
>it's pretty straightforward to just use git and ssh on the server. I never used the xcode server option for it - are you really losing anything (besides time having to set up something new)? I have a ton of self hosted git repositories set up on my Xcode Server and having to set up remotes elsewhere or to configure them from the command line is a a time consuming task. Just a coulple clicks in the GUI was pretty nice.>But I am sincerely curious. Mostly just want to encourage you to look into setting it up yourself as a git+ssh type thing before you feel like you have no option besides switching to paid setup.Paying Github to host private repositories was never going to happen from me. But don't kid yourself, they made a deal with them for this integrated setup in Xcode 9 and money was involved. Self-hosting repositories is an easy way to not pay Github, so I bet they agreed with them to remove the feature in exchange for that open in xcode stuff on
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’17
Reply to Unresolved Spilt View problem?
Can you push github link?
Replies
Boosts
Views
Activity
Mar ’18
Reply to How can I call error recovery?
github? dropbox? tinyupload?
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’17
Reply to Badger code sample does not run on iOS 10 when compiled on El Capitan?
Thanks for your answer.Yes it is an iPad mini 2 - forgot to add the number at the end. The error I get consistently, both in the simulator and on the device is EXC_BAD_ACCESS at line 38 of ViewController.swift for Thread 1 with code=1, address = 0x0. I am running OS X v 10.11.5. I should say that I have both Xcode 7.3.1 and Xcode 8 beta installed. Since this error seems to be uncommon, I'll try a fresh install.
Topic: Graphics & Games SubTopic: SceneKit Tags:
Replies
Boosts
Views
Activity
Jun ’16
Reply to Building macOS with App Groups using external CI/CD
I'm also experiencing this issue so I figured I'd throw my own details on here in case they help. I am building a macOS System / Network Extension. I can build locally with both Development and Developer ID keys using XCode. As soon as I move towards xcodebuild (locally), I need to have the provisioning profile installed by downloading it from the Developer Portal and double-clicking it, etc. xcodebuild -scheme Extension -configuration Release -destination generic/platform=macOS The exact problem rookuuu has happens when I attempt to build in my CI pipeline with the exact same provisioning profile and key. Specifically GitHub Actions + GitHub-Hosted Runners using GitHub instructions for installing profiles. If I remove the profiles locally on my machine and attempt to install the provisioning profile using GitHub instructions (rename {ProfileName}.provisionprofile to {ProfileGuid}.mobileprovision and add to ~/Library/MobileDevice/Provisioning Profiles) it has the s
Replies
Boosts
Views
Activity
Jun ’23
Reply to Custom Errors
I tried the code you last posted in new project (both Xcode 8.3.3 and Xcode 9, Swift 3.x and 4) and it works fine. At this point, I'd say the problem is not the ExamineError declaration, but something else is going wrong in your project. If you're using a current version of Xcode, I'd suggest you submit a bug report and see what comes back.Incidentally, just for interest, you could try:catch { let e = error as! ExamineError print (type(of: e)) }and see what it says.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’17
Reply to Problems after updating to Xcode 13.3
UPDATE 3: The problem with iCloud returned. Changing my Apple ID password doesn't seem to have any effect. Every time I restart the mac and log in, iCloud asks me to log in like it's the first time. Mail no longer has the password for my email account. Added to this is the verification of Xcode as well as other applications. Xcode keeps asking me to install components like it's the first time. On Xcode I also have to reconnect to my gitlab and github accounts. This is really hell!!! It's a nightmare !!!
Replies
Boosts
Views
Activity
Mar ’22
Reply to Error Analyzing App Version
hey guys! what helped me is running build inside Xcode until I debugging all the critical warnings such as e.g. missing ipad icon 152 x 152. after that, the upload went smoothly! so you'll likely to see the error when there are issues with your Info.plist, icon images, essentially anything really:) happy coding! niko
Replies
Boosts
Views
Activity
Jun ’22
Reply to Xcode 8 release crashes on old xib files
I have the exact same issue. Any help would be greatly appreciated!If it''s of any help, my Xcode crash log is overe here gist [dot] github [dot] com [slash] thomax [slash] b338a8d02fb0c230fb1ec8e6cda41be9. Sorry for mangling that URL, but it seems the only way to avoid the moderation flag, and moderation around here seems to take a while.
Replies
Boosts
Views
Activity
Sep ’16
Reply to Animated blueprint of Solid-State Lithium Metal Battery
This is not github
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Keyserver on Windows?
Is it possible to share it on github?
Topic: Media Technologies SubTopic: Streaming Tags:
Replies
Boosts
Views
Activity
Feb ’20
Xcode beta that I downloaded from the Apple Developer porter is modified to be ciontrolled my a remote user and do some nast things to my machine. What should I do with this. You guys need to see what these hackers can do to our x-code. I have a copy I
Hi Xcode DeveloperI need some help. Can someone who can fix xcode exploits give me somewhere to send this, it's nasty. I have an xcode server that Ineed to keep running
Replies
0
Boosts
0
Views
284
Activity
Jul ’17
Reply to How can I compile this app?
The missing files are found in a couple of Git submodules which don’t seem to get cloned if you use GitHub’s Open with Xcode or Download ZIP options, or a normal git clone command. It works if you use git clone --recursive like this: $ git clone --recursive git@github.com:macmade/QEMU-Manager.git
Replies
Boosts
Views
Activity
Jan ’22
Reply to Xcode unsupported iOS version after beta update 14.5 error 18e5140k
hello everyone, i solved the problem by adding iOS 14.5 the device support file inside the Xcode app in path contents/Developer/platform/iPhoneOS.platform/DeviceSupport You can download it from GitHub - https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport or you can download the new beta version and grab the directory from it.
Replies
Boosts
Views
Activity
Feb ’21