This demo application was developed using the REES46 SDK for iOS to showcase the capabilities of this SDK.
Current app version: 1.0.0
This SDK requires iOS 13.0 or later.
Demo.shop.presentation.mp4
Here's a simple example to get you started:
import REES46
class SDKManager: SDKManaging {
var sdk: PersonalizationSDK?
init() {
initializeSDK()
}
private func initializeSDK() {
sdk = createPersonalizationSDK(
shopId: "YOUR_SHOP_ID",
apiDomain: "YOUR_DOMAIN"
)
}
}