Questions tagged [tuist]
10 questions
3
votes
0 answers
iOS - Tuist: External dependency errors at steps fetch and generate
I am using Tuist v2 and trying to add external dependencies to my project using Dependencies.swiftfile:
import ProjectDescription
let dependencies = Dependencies(
carthage: [],
swiftPackageManager: [
.package(url:…

Olcay Ertaş
- 5,987
- 8
- 76
- 112
3
votes
1 answer
Tuist generate fails with Xcode 13
After updating Xcode to 13.0, I get an error when trying to run the command:
tuist generate
The error:
The 'swiftc' command exited with error code 1 and message:
error: link command failed with exit code 1 (use -v to see invocation)
ld: framework…

Shaked Sayag
- 5,712
- 2
- 31
- 38
1
vote
2 answers
tuist cache not taken into account when generating project file
I am trying the caching features of tuist (https://tuist.io) using one of the demos provided on Github, the app_with_spm_dependencies (https://github.com/tuist/tuist/tree/main/projects/tuist/fixtures/app_with_spm_dependencies). I was trying to see…

Paulo Silva
- 61
- 8
1
vote
0 answers
iOS Swift: "No such module 'Firebase'", can't use Firebase even though package is installed
Project uses Tuist and Swift Dependancy Package Manager, Firebase is installed yet I can't import it into files without errors. Existing files that already have it imported don't get such errors. Why am I getting this error? I have tried deleting…

George
- 322
- 1
- 6
- 25
0
votes
0 answers
building for iOS Simulator, but linking in .tbd built for macOS/Mac Catalyst
In my iOS project, when I build my app from the command line with the following command :
xcodebuild -project Project.xcodeproj -scheme Scheme -destination 'platform=iOS Simulator,name=iPhone 14 Pro'
I get the following error :
ld: building for iOS…

Rukka
- 350
- 1
- 9
0
votes
0 answers
Generate objective-c string literal with Tuist
I'm new to tuist and i'd like to use the swiftgen feature to generate my Localizable strings to some objc cause my project still have some objc files. Sorry i'm new to tuist and junior dev ^^'
When i generate my TuistStrings+{name}.strings files…

Killianoni
- 1
- 1
0
votes
1 answer
How do I fix this Tuist installation error: curl: (22) The requested URL returned error: 404?
I am trying to install Tuist but I get the error below in Terminal. Could anyone explain how to fix that.
Downloading tuistenv...
curl: (22) The requested URL returned error: 404
Trying to install Tuist

Amos Gyamfi
- 1
- 2
0
votes
1 answer
Using a shared framework with Tuist
I am migrating an existing project in Xcode to using Tuist. The application has a main app, Watch App, and a notification extension. There is loads of shared code between each project.
How can I use Tuist to share a framework between the iOS and…

datinc
- 3,404
- 3
- 24
- 33
0
votes
0 answers
How to resolve from other modules in Swinject
Modularized the project using Tuist. I made RepositoryAssembly and UseCaseAssembly on the Data module and Domain module. Assembler is located in InjectManager and runs in AppDelegate in the App module.
// InjectManager.swift
public struct…

baegteun
- 3
- 2
0
votes
1 answer
Generate App with multi language support with Tuist
my app, which i am setting up with tuist, is supposed to support localization.
how can I configure this in the tuist project?

Björn Lindner
- 1
- 3