Questions tagged [carthage]

Carthage is a decentralized dependency manager for Cocoa projects, able to build dependencies for providing dynamic frameworks. Carthage does not automatically modify project files or build settings.

Homepage: https://github.com/Carthage/Carthage

475 questions
28
votes
4 answers

Xcode 9, Carthage. iTunes Connect Error: "Invalid Bundle - Disallowed LLVM instrumentation"

Today I downloaded Xcode 9 and made the necessary changes for my application to compile. The application is compiling and running locally without any issues. Using Xcode 9 I uploaded it to the App Store. Upload was successful without any errors. I…
zirinisp
  • 9,971
  • 5
  • 32
  • 38
26
votes
5 answers

Carthage: no shared framework schemes for iOS platform (for my own framework)

I create a framework (called ProjectOne) built and tested it. I want to allow this framework to be used in Carthage. I edited my scheme and made the default "ProjectOne" scheme shared in XCODE. I did a carthage build and verified that the framework…
tng
  • 4,286
  • 5
  • 21
  • 30
25
votes
8 answers

Xcode 10 Could not find any available simulators for iOS when install Carthage dependencies

I'm trying to install Carthage dependencies in my Xcode project with the Carthage bootstrap --platform iOS command line but It's fail and I have this message in my terminal: Could not find any available simulators for iOS I've just updated Xcode…
kroko
  • 299
  • 3
  • 10
24
votes
3 answers

Do I need bcsymbolmap files created by Carthage

I am using Carthage dependency manager in my iOS project. I have the Carthage/build folder in my repository to always have ready to go built frameworks when checking out the repo. I am wondering what the bcsymbolmap files in the build folder are…
codingFriend1
  • 6,487
  • 6
  • 45
  • 67
19
votes
2 answers

CocoaPods and Carthage

I had a project with both Carthage and Cocoapods. They both have one common dependency (PureLayout, to be precise). Strange, but project compiles fine without any errors about class redeclaration, etc. So the question is: why it works and which…
Alexander Doloz
  • 4,078
  • 1
  • 20
  • 36
19
votes
3 answers

How do I setup Carthage to use my own Frameworks that are in private repository like Stash (Bitbucket)?

I was wondering if there is something like private pods in Carthage, I have a couple of frameworks and I'm currently using git submodules, I started using Carthage for a new project and is pretty nice but so far I just configured it to manage third…
Black Sheep
  • 1,665
  • 1
  • 22
  • 32
18
votes
2 answers

How to make framework in CocoaPods that has multiple targets?

I write a framework and I like to divide framework to small separate submodules (targets). Apple provides a cool description for thing I want to achieve with CocoaPods: Targets are the basic building blocks of a package. A target can define a…
Vasily
  • 3,740
  • 3
  • 27
  • 61
18
votes
3 answers

How to uninstall Carthage from OS X?

Somehow, my Carthage installation is corrupted (seems like I have two versions installed) due to the fact that I installed using the Carthage.pkg file then also with brew install carthage. I'd like to completely remove Carthage(s) but can't find the…
Van Du Tran
  • 6,736
  • 11
  • 45
  • 55
17
votes
3 answers

What's the solution for "error: Couldn't IRGen expression, no additional error" on Xcode 10.1?

We have a large project with a lot of dependencies brought in through Carthage. Whenever we try to look at a variable in the lldb debugger (p variablename), it gives us an error: error: Couldn't IRGen expression, no additional error None of the…
Brian Kendig
  • 2,452
  • 2
  • 26
  • 36
17
votes
5 answers

Module compiled with Swift 4.1.2 cannot be imported in Swift 4.1.50: Xcode 10 Error

Swift 4.2 came out and I'm receiving this error message in my project when using ObjectMapper and some other pods too: Module compiled with Swift 4.1.2 cannot be imported in Swift 4.1.50 So how do I tell Xcode to start updating my project and…
Sahil Kapoor
  • 11,183
  • 13
  • 64
  • 87
15
votes
1 answer

How to build a Carthage framework from git branch

Alamofire has a bug that is fixed in a future release. The author has already fixed the bug and the solution is merged in the master branch. Is there any way for me to use carthage so I can create a framework file that includes this fix? Currently…
java_doctor_101
  • 3,287
  • 4
  • 46
  • 78
14
votes
6 answers

iOS - watchOS App publishing issue CFBundleIdentifier collision

After the app uploading I receive the following email We identified one or more issues with a recent delivery for your app, XXX. Please correct the following issues, then upload again. ITMS-90806: CFBundleIdentifier collision - Each bundle must…
cristallo
  • 1,951
  • 2
  • 25
  • 42
14
votes
2 answers

Error building iOS Framework: usr/local/bin/carthage: No such file or directory

I have this error when building my project that include several external Frameworks that I have installed using Carthage…
user3239711
  • 639
  • 1
  • 7
  • 24
14
votes
1 answer

How can I compile a library with Carthage using the latest beta of Xcode?

I am testing out Swift 3 with Xcode 8 Beta (8S128d), which leads me to a situation where my Carthage-built libraries are not compatible with the source base. Module file was created by an older version of the compiler; rebuild 'SwiftValidator' and…
Kheldar
  • 5,361
  • 3
  • 34
  • 63
14
votes
2 answers

"no such module" on Xcode 7 beta 2

I saw this question, but I am still unable to import a framework and use it inside Xcode 7 beta 2 (7A121l). So currently I am trying to use Result, via carthage. After adding it to Build Phases/ Link Binary with Binaries and Embed Frameworks I am…
Rui Peres
  • 25,741
  • 9
  • 87
  • 137
1
2
3
31 32