Search results for

xcode github

91,955 results found

Post

Replies

Boosts

Views

Activity

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 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 Glitches on Radeon Pro 460
OK : the bug report number is 29830692... I have another post below, that is waiting for moderation to be published, where I put a link to the GitHub xcode project I enclosed with the bug report (and with 2 screenshots, with and without the visual glitch). You could find the GitHub repository under the name : Multi-passes-Metal-depth-buffer-bug-on-Radeon-Pro-460Cyril.
Topic: Graphics & Games SubTopic: General Tags:
Dec ’16
Reply to Swift, Xcode and Github
>The next step is Xcode.I'd install it, then see Xcode Help, either what is built in, or maintained online. That is a big step, tho, so if you're all green, you might want to take a bath here: https://developer.apple.com/library/archive/referencelibrary/GettingStarted/DevelopiOSAppsSwift/About installing it, do that via the Mac App Store, for now.Do you have a paid Developer Program account? It matters, so...github is integrated in Xcode - see this WWDC video on source control: https://developer.apple.com/videos/play/wwdc2018/418/And the info here, as an example:h ttps://blog.chrishannah.me/using-github-and-xcode-together/
Nov ’19
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
Reply to Server part on Swift
On an OS X server, you can go with with established HTTP service like Apache, but you are (at least for now) going to have write some kind of interface module to be able to integrate Swift code. Or, you can write your own HTTP service (there is source code for this sort of thing on, say, Github, which you could translate into Swift), and add whatever server-side processing your situation requires.So, yes, a pure OS X + Swift server solution is functionally possible now. But the problem is that this will only be good for low transaction rates. For higher volumes, you need scalability (load balancing, etc) and writing that sort of thing from scratch in Swift is going to be a challenge (not to mention time-consuming).My point in mentioning IBM and Microsoft is that, on the server side, (IMO)infrastructure is a more important consideration than your preference for APIs. Use the wrong language, and you'll be unhappy for a while during implementation. Use the wrong infra
Topic: Programming Languages SubTopic: Swift Tags:
May ’16