You are viewing the documentation for a prerelease version.

View Latest

Install Couchbase Lite on Swift

    • Beta
      +

      Description — Installing Couchbase Lite on Swift

      Get Started

      To get started coding Couchbase Lite for Swift apps, just create or open an existing XCode project and install the required Couchbase Lite version, for example 3.2.0-beta.1, using one of the Install Couchbase Lite methods shown.

      Enterprise users can also download the Couchbase Lite Vector Search extension library.

      Couchbase Lite is distributed as an XCFramework, to support this:

      • The minimum required CocoaPods version is 1.15

      • The minimum required Carthage version is 0.38

      Install Couchbase Lite

      There is no Carthage support for the 3.2.0 Beta-1 version of Couchbase Lite .
      • Direct Download

      • CocoaPods

      • Swift Package Manager

      1. Download the binaries from here — Extend with Mobile.

      2. Unpack the download zip file into your XCode project location.

      3. Select your target settings in XCode and drag CouchbaseLiteSwift.xcframework from your Finder to the Frameworks, Libraries, and Embedded Content section.

      4. Start using Couchbase Lite on Swift in your project.

      The minimum required Cocoapods version is 1.15
      1. Install CocoaPods using the instructions here:
        https://guides.cocoapods.org/using/getting-started.html

      2. Add one of these targets to your Podfile:

        Couchbase Lite Community Edition
        target 'Example' do
          use_frameworks!
          pod 'CouchbaseLite-Swift', '3.2.0-beta.1' (1)
        end
        1 Specify the required version number, here we use the latest version
        Couchbase Lite Enterprise Edition
        target 'Example' do
          use_frameworks!
          pod 'CouchbaseLite-Swift-Enterprise', '3.2.0-beta.1' (1)
        end
        1 Specify the required version number, here we use the latest version
      3. Install the pods and open the .xcworkspace file generated by CocoaPods, using:

        pod install
      Using Swift Package Manager to install CouchbaseLiteSwift requires XCode 12+

      This tab explains how to include the CouchbaseLiteSwift package within your app
      See: Use Case 1. Include in Existing Swift Package | Use Case 2. Include in Your App Project

      Use Case 1. Include in Existing Swift Package

      Here we will add the CouchbaseLiteSwift dependency to your Parent Swift package — see: Example 1 for the sample manifest.

      1. Add the CouchbaseLiteSwift package as dependency by including the following in the parent package manifest:

        dependencies: [
          .package(name: "CouchbaseLiteSwift",
            url: "insert Couchbase Lite URL", (1)
            from: "3.2.0-beta.1"), (2)
          ],
        1 Insert appropriate Couchbase Lite URL:
        For Community Edition use: https://github.com/couchbase/couchbase-lite-ios.git
        For Enterprise Edition use: https://github.com/couchbase/couchbase-lite-swift-ee.git
        2 Include the required version number here, for example the latest version is 3.2.0-beta.1
      2. Add the dependent package product name, to the target:

        targets: [
          .target(name: "ParentPackage",
            dependencies: ["CouchbaseLiteSwift"]),
          ]
      3. Import CouchbaseLiteSwift, and use it:

        import CouchbaseLiteSwift
        
        class ParentPackageSomeClass {
          func someFunction() {
            let db = try! Database(name: "testdb")
            print(">> opening the db: \(db.name)")
          }
        }
      Example 1. Simple Manifest
      // swift-tools-version:5.3
      import PackageDescription
      let package = Package(
      name: "ParentPackage",
      products: [
        .library(
          name: "ParentPackage",
          targets: ["ParentPackage"]),
        ],
      dependencies: [
        .package(name: "CouchbaseLiteSwift",
          url: "https://github.com/couchbase/couchbase-lite-swift-ee.git", from: "3.2.0-beta.1"),
        ],
      targets: [
        .target(
          name: "ParentPackage",
          dependencies: ["CouchbaseLiteSwift"]),
        .testTarget(
          name: "ParentPackageTests",
          dependencies: ["ParentPackage"]),
        ]
      )
      Use Case 2. Include in Your App Project

      Here we will add CouchbaseLiteSwift directly into your app

      1. Open the project to which you are going to add CouchbaseLiteSwift

        spm 1
      2. Open the Project Editor to add a dependency

        1. In Project Navigator:
          Select your Xcode project file (for example, HostApp in the example)
          Xcode opens the Project Editor pane

        2. In the Project Editor pane:
          Select Project  Swift Packages and + to add the dependency
          Xcode opens the Choose Package Repository dialog

          spm 2
      3. In the Choose Package Repository dialog:
        Enter the appropriate Couchbase Lite URL, Next to continue
        For example: https://github.com/couchbase/couchbase-lite-swift-ee.git

        spm 3
      4. Enter the required Version (the latest is 3.2.0-beta.1) and Next to continue

        spm 4
      5. Finish to close the Choose Package Repository dialog

        spm 5

        Xcode displays the name, version and URL of the added CouchbaseLiteSwift Package

        spm 6
      6. You can now import CouchbaseLiteSwift, and use it in your app

        spm 7

      Install Vector Search Extension

      Vector Search is only available on 64-bit architectures. You must have Couchbase Lite installed to use the Vector Search extension. Vector Search is an Enterprise only feature. There is no Carthage support for the beta release of Vector Search.

      • Direct Download

      • CocoaPods

      • Swift Package Manager

      1. Download the binaries from here — binary download link.

      2. Unpack the download zip file into your XCode project location.

      3. Select your target settings in XCode and drag CouchbaseLiteVectorSearch.xcframework from your Finder to the Frameworks, Libraries, and Embedded Content section.

      4. Start using Couchbase Lite Vector Search on Swift in your project.

      The minimum required Cocoapods version is 1.15
      1. Install CocoaPods using the instructions here:
        https://guides.cocoapods.org/using/getting-started.html

      2. Add one of these targets to your Podfile:

        Example 2. Couchbase Lite Enterprise Edition
        target 'Example' do
          use_frameworks!
          pod 'CouchbaseLiteVectorSearch', '1.0.0-beta.1' (1)
        end
        1 Specify the required version number, here we use the latest version of the beta
      3. Install the pods and open the .xcworkspace file generated by CocoaPods, using:

        pod install
      Using Swift Package Manager to install CouchbaseLiteSwift requires XCode 12+

      This tab explains how to include the CouchbaseLiteSwift package within your app
      See: Use Case 1. Include in Existing Swift Package | Use Case 2. Include in Your App Project

      Use Case 1. Include in Existing Swift Package

      Here we will add the CouchbaseLiteVectorSearch package as a dependency to your Parent Swift package.

      1. Add the CouchbaseLiteVectorSearch package as a dependency by including the following in the parent package manifest:

        dependencies: [
          .package(name: "CouchbaseLiteVectorSearch",
            url: "https://github.com/couchbase/couchbase-lite-vector-search-spm.git",
            from: "1.0.0-beta.1"),
          ],
      2. Add the dependent package product name to the target:

        targets: [
          .target(name: "ParentPackage",
             dependencies: ["CouchbaseLiteVectorSearch"]),
        ]
      3. CouchbaseliteVectorSearch will be automatically detected and loaded in when creating a CouchbaseLite database object.

      Use Case 2. Include in Your App Project

      Here we will add CouchbaseLiteSwift directly into your app

      1. Open the project to which you are going to add CouchbaseLiteSwift

        spm 1
      2. Open the Project Editor to add a dependency

        1. In Project Navigator:
          Select your XCode project file (for example, HostApp in the example)
          XCode opens the Project Editor pane

        2. In the Project Editor pane:
          Select Project  Swift Packages and + to add the dependency
          XCode opens the Choose Package Repository dialog

          spm 2
      3. In the Choose Package Repository dialog:
        Enter the appropriate Couchbase Lite URL, Next to continue
        For Vector Search: https://github.com/couchbase/couchbase-lite-vector-search-spm.git

        spm 3
      4. Enter the required Version (1.0.0-beta.1) and Next to continue

        spm 4
      5. Finish to close the Choose Package Repository dialog

        spm 5

        XCode displays the name, version and URL of the added CouchbaseLiteVectorSearch Package

        spm 6
      6. You can now import CouchbaseLiteVectorSearch, and use it in your app

        spm 7