Rajni RetheshforMiddleware - Be Productive, Not Busy!middlewarehq.com·Oct 26, 2024Swift Package Manager Dora Metrics: Swift Cycle Times, But Updates Could Be SwifterEver wondered how your favorite music streaming app ensures smooth audio playback with tools like AudioKit? Or how does it handle all those network requests efficiently using Alamofire? Managing these libraries manually would be chaotic—how do develo...Discuss100 Days of Dora Metrics Case StudiesSwift
Swift Insightsblog.ganukeperera.com·Jul 19, 2024Mastering Modularization: Building Swift Packages with Swift Package ManagerIntroduction Hi folks, today we're diving into the importance of modularization in Swift application development. Later in this post, I'll walk you through creating your own package using Swift Package Manager and how to integrate it into other Xcode...Discuss·87 readshttps://hashnode.com/n/swift
Canopascanopas.hashnode.dev·Feb 19, 2024How To Add Multiple Modules In The Swift Package ManagerWhat is SPM? Swift Package Manager, is Apple’s tool for easily adding libraries and frameworks to your project. Introduced in 2015, it’s loved for its simplicity. Compared to CocoaPods, SPM’s integration is straightforward, and it’s widely adopted, s...DiscussSwift
Javal Nandajavalnanda.com·Jan 30, 2024Preventing Code Execution While Running Tests from CLI for Swift PackageIdeally, you would not require conditional logic in your production code to check if tests are running or the main app target is running. But, there are situations where you can't get around it in case of Integration tests or UI Tests. There are vari...Discuss·89 readsTesting
Javal Nandajavalnanda.com·Jan 24, 2024Adding test target to Swift Package (--type executable)If you have used SPM to create the command line application before Swift 5.9.0, the project structure used to be as follows: Package.swift README.md .gitignore Sources/ Sources/SamplePackage/main.swift Tests/ Tests/LinuxMain.swift Tests/SamplePackage...Discuss·45 readsSwift
Shahrukh Alamshahrukhalam.hashnode.dev·Jan 7, 2024Swift Package Plugins - Getting StartedDisclaimer This article doesn’t explain what is a Swift Package Plugin, but just provides Source Code of the demos discussed in the related WWDC videos. I hope you will have better resources to start diving into Swift Package Plugin, next time we wil...Discuss·48 readsSwift Package Plugins
Marco Eidingerblog.eidinger.info·Jul 3, 2023Using Swift packages with authentication in Xcode CloudThird-party SDKs may use Swift packages to vent their binary frameworks from a server that requires authentication. In Xcode Cloud you will encounter the error Could not resolve package dependencies: failed downloading ... if you don't provide the ne...Discuss·1 like·958 readsXcode