Search results for

xcode github

94,696 results found

Post

Replies

Boosts

Views

Activity

Unable to fetch dependencies from GitHub: "Could not read username"
I am unable to complete the Archive step for my iOS project. Looking at the logs, I see a number of messages that imply that Xcode Cloud is unable to fetch my dependencies for some reason. I have verified that I gave Xcode access to all my GitHub repositories, and it seems to be able to access my primary project repository without any problems. The type of logs I'm getting are as follows: Failed to clone repository git@github.com:myusername/MyRepositoryName.git: Cloning into bare repository '/Volumes/workspace/DerivedData/SourcePackages/repositories/MyRepositoryName-b342b4d2'... fatal: could not read Username for 'http://github.com': terminal prompts disabled One for each of my dependencies. Any thoughts?
1
0
2.4k
Jun ’22
Reply to Apple Pay for the Web Merchant Validation
I did try out your php solution in github on my Mac OS X (El Capitan) using the default apache server and the php modules that shipped with Mac OS X. I couldn't get it to work because of the following:executing apple_pay_comm.php with &u=https://apple-pay-gateway-cert.apple.com/paymentservices/startSession{curlError:SSL: Can't load the certificate /Library/WebServer/Documents/applepay/applepay_includes/ApplePay.crt.pem and its private key: OSStatus -61}I looked up the curl issue of OSStatus -61 and it led me to https://coderwall.com/p/h3zzrw/using-client-ssl-certificates-for-php-curl-requests-on-osxIn the end, I couldn't get your php server code to make a HTTP post request to apple's web servers (production or sandbox).
Aug ’16
Reply to Widgets not working with TestFlight since Xcode 12 beta 3
I'm having this issue with Xcode 12.2 again. Widget in Testflight build can not work for some devices (14.2.x). The two issues Dead Code Stripping, and disable Bitcode were solved by Apple and mentioned in Xcode 12 release note. But I'm not sure if Xcode 12.x has the issue again, or just an iOS version bug? (Reboot the phone make Widget works again, but got down after awhile again)
Topic: App & System Services SubTopic: General Tags:
Dec ’20
Reply to Unable to build project in Xcode 14.3 beta due to missing arc dir at /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib
Launching lib/main.dart on iPhone 15 Pro in debug mode... Running pod install... Running Xcode build... Xcode build done. 47.0s Failed to build iOS app Swift Compiler Error (Xcode): Value of optional type '(any StorageProvider)?' must be unwrapped to refer to member 'storage' of wrapped base type 'any StorageProvider' /Users/mumtazsindhi/Documents/GitHub/wallet/ios/Pods/FirebaseStorage/FirebaseStorage/Sources/Storage.swift:72:11 Swift Compiler Error (Xcode): Value of optional type '(any StorageProvider)?' must be unwrapped to refer to member 'storage' of wrapped base type 'any StorageProvider' /Users/mumtazsindhi/Documents/GitHub/wallet/ios/Pods/FirebaseStorage/FirebaseStorage/Sources/Storage.swift:87:11 Swift Compiler Error (Xcode): Cannot assign value of type '(any AuthInterop)?' to type 'any AuthInterop' /Users/mumtazsindhi/Documents/GitHub/wallet/ios/Pods/FirebaseStorage/FirebaseStorage/Sources/Storage.swift:290:38 Swift Compiler Erro
Aug ’24
Reply to Xcode 9 - Git not on GitHub?
As of Xcode 9, the Preferences window no longer lists every source control repository you have ever opened or cloned in Xcode. Instead, you will see the Source Control services you have explicitly added like GitHub or GitHub Enterprise.Can you expand a little on what you're trying to do? If you want to check out a new repository you'll want the Source Control > Clone… menu item. Otherwise, the new navigator dedicated to Source Control information is a great place to start.
Sep ’17
Reply to Xcode/GitHub integration broken
Been suffering through this same exact issue for the past couple hours and finally found a solution: First, (if you haven't already updated your SSH key) generate a new SSH key using ECDSA with the following command: ssh-keygen -t ecdsa -C your_email This should generate two keys id_ecdsa and id_ecdsa.pub Next, add the SSH key to your github account. Run the following command to copy your new key to clipboard. pbcopy < ~/.ssh/id_ecdsa.pub Then go to GitHub ---> Settings ---> SSH and GPG Keys, and click on New SSH Key. Give your key a relevant title and paste what you copied from your clipboard. Click on Add SSH Key and confirm your password if needed. Now that you have your new key setup it's time to tell update your Xcode account to use the new key which is not as simple as selecting it from the drop-down for some reason. Go to Xcode ---> Preferences ---> Accounts. Highlight your current GitHub account and delete it by tapping the - button located i
Mar ’22