snabble - the self-scanning and checkout platform.
Starting with the 0.22.2 release, Snabble officially supports installation via Swift Package Manager.
Prior to version 0.22.2 only Cocoapods is supported
Add a package by selecting File
→ Add Packages…
in Xcode’s menu bar.
Search for the Snabble Apple SDK using the repo's URL:
https://github.com/snabble/snabble-ios-sdk.git
Next, set the Dependency Rule to be Up to Next Major Version
and specify 0.22.2
as the lower bound.
Then, select Add Package.
Choose the Snabble products that you want installed in your app.
Package.swift
manifestTo integrate via a Package.swift
manifest instead of Xcode, you can add
Firebase to the dependencies array of your package:
dependencies:[
.package(
name: "Snabble",
url: "https://github.com/snabble/snabble-ios-sdk.git",
.upToNextMajor(from: "0.22.2")
)
]
Then, in any target that depends on a Firebase product, add it to the dependencies
array of that target:
.target(
name: "MyTargetName",
dependencies: [
// The product(s) you want (e.g. SnabbleCore).
.product(name: "SnabbleCore", package: "Snabble"),
]
)
In order to use the twint
and postFinanceCard
payment methods, you will also need to include 'SnabbleDatatrans'
as package in your app. During the app's initialization phase you will then need to call DatatransFactory.initialize()
with your app's registered URL scheme to make these methods available.
Note that support for these payment methods also requires changes to your app's Info.plist
as described in Datatrans' SDK documentation, as well as adding a URL scheme that can be used to pass data back to your app, e.g. by adding
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>YOUR_URL_NAME_HERE</string>
<key>CFBundleURLSchemes</key>
<array>
<string>YOUR_URL_SCHEME_HERE</string>
</array>
</dict>
</array>
Snabble follows semantic versioning rules. Note that we are currently in initial development, with major version 0. Anything may change at any time.
https://docs.snabble.io/docs/ios/
The Example folder contains an extremely simple example for an app. To compile:
$ git clone https://github.com/snabble/snabble-ios-sdk
$ cd snabble-ios-sdk/Example
$ open SnabbleSampleApp.xcodeproj
To run this sample app, you will need an application identifier and a corresponding secret. Contact us via e-mail for this information.
snabble GmbH, Bonn https://snabble.io
snabble is (c) 2021 snabble GmbH, Bonn. The SDK is made available under the MIT License.
link |
Stars: 5 |
Last commit: 13 hours ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics