The ProGlove ConnectSDKWatch is a Swift SDK used to communicate with the ProGlove scanners.
** BY USING THIS SDK YOU AGREE TO THE FOLLOWING LICENSE TERMS AS DEFINED BY PROGLOVE. **
The ConnectSDK for Swift supports the following:
- Swift 5.7 or higher
- watchOS 9 or higher
Environment for iOS is supported by this library: ConnectSDK
Dependencies that are being used are necessary for the SDK to work properly.
Current dependencies that are being used in the package are:
- SwiftProtobuf
- nRF Connect Device Manager
- QRCode
Here are the steps to get the Connect SDK installed into either your existing Xcode Project or Package.
-
Open your project in the Xcode IDE. From the drop down menu, select File > Add Packages...
-
In the field labeled "Search or Enter Package URL", enter "https://github.com/workaroundgmbh/pg-connect-sdk-watchos". Set the dependency rule and project as needed, then click "Add Package". The package will download and install to your Xcode project.
-
In the "Choose Package Products for ConnectSDK" popup window, check the box, and set the Xcode target. Click "Add Package".
In your package's Package.swift
, add Connect SDK as a package dependency:
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "<Your Product Name>",
dependencies: [
.package(url: "https://github.com/workaroundgmbh/pg-connect-sdk-watchos", .upToNextMajor(from: "1.0.0"))
],
)
Please use the ProGlove Documentation that is already provided.
For now, DocC is not in the current scope, but hopefully in the near future it will be included.