python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Swift Package with C++ builds in Xcode but not on CLI
I have a Swift package that includes C++ and ObjC code.
It builds & runs with no issues in the Xcode 13.3 IDE and when building it as part of an app using xcodebuild on CLI, but when I try to buil...
jbelkins
Votes: 0
Answers: 1
Mapbox "invalid location for binary target" error during Fastlane build resolving spm dependency
I'm receiving this error while xcode tries to resolve Swift Package Manager dependencies with these command:
xcodebuild -resolvePackageDependencies -workspace MyWorkspace.xcworkspace -scheme MyScheme
...
Gianluca
Votes: 0
Answers: 0
How to fix error: Could not compute signing task inputs - operation was cancelled?
I have a swift package manager project and I am trying to run unit tests with Fastlane on GitHub actions.
My fastfile looks like
desc('Unit test with spm')
lane :spm_test do
scan(
worksp...
Johnykutty
Votes: 0
Answers: 0
Create XCFramework with multiple framworks
I am first time trying to create a XCFramework with below command.
xcodebuild -create-xcframework \
-framework ./Logger-iOS.xcarchive/Products/Library/Frameworks/Logger.framework \
-framework ./Logger...
smartsanja
Votes: 0
Answers: 0