3

I'm using sqlite.swift in my Swift project. Until now I'm using Cocoapods to install/update the library.

Is it possible to install sqlite.swift with Carthage insted of using Cocoapods?

Eric Aya
  • 69,473
  • 35
  • 181
  • 253
Alex Bibiano
  • 633
  • 1
  • 6
  • 19

1 Answers1

4

As shared by stephencelis, you can follow the instructions detailed on github.com/stephencelis/SQLite.swift/

Make sure Carthage is installed. Update your Cartfile to include the following:

github "stephencelis/SQLite.swift"

Run carthage update and add the appropriate framework in Xcode.

This will install the latest version.

mm2001
  • 6,427
  • 5
  • 39
  • 37
Alex Bibiano
  • 633
  • 1
  • 6
  • 19