Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate ElkycCoreSDK into your Xcode project using CocoaPods, specify it in your Podfile:

source 'git@github.com:elkyc/ElkycPodsRepo.git'

pod 'ElkycCoreSDK'

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.

Once you have your Swift package set up, adding ElkycCoreSDK as a dependency is as easy as adding it to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/elkyc/ElkycCoreSDK.git", .branch("main"))
]

Manually

If you prefer not to use any of the aforementioned dependency managers, you can integrate ElkycCoreSDK into your project manually.

  • Open up Terminal, cd into your directory, and run the following:

    $ git clone git@github.com:elkyc/ElkycCoreSDK.git ElkycCoreSDK
  • Open the new ElkycCoreSDK folder, and drag the ElkycCoreSDK.xcframework into the Project Navigator of your application's Xcode project

Last updated