An open API service indexing awesome lists of open source software.

https://github.com/rees46/demo-ios

Demo app
https://github.com/rees46/demo-ios

Last synced: 5 months ago
JSON representation

Demo app

Awesome Lists containing this project

README

          

# Demo shop created on the basis of REES46- IOS SDK

[![Version](https://img.shields.io/cocoapods/v/REES46.svg?style=flat)](https://cocoapods.org/pods/REES46)
![iOS](https://img.shields.io/badge/iOS-13%2B-blue)
![Release](https://img.shields.io/badge/release-blueviolet)
[![License](https://img.shields.io/cocoapods/l/REES46.svg?style=flat)](https://cocoapods.org/pods/REES46)

![REES46](https://github.com/user-attachments/assets/f84f80c5-5884-42f5-92d5-65f2a4c30aee)

![1x1](https://github.com/user-attachments/assets/895082a8-e5ea-498c-bf78-d92519ba071b)

## Description

This demo application was developed using the REES46 SDK for iOS to showcase the capabilities of this SDK.

## Version

Current app version: 1.0.0

## Deployment Target

This SDK requires iOS 13.0 or later.

## Video and Screenshots

### Video
[Watch Demo Video](https://github.com/user-attachments/assets/8c5bcb21-306b-4613-acde-9089cf176954)

## Code Example

Here's a simple example to get you started:

```swift
import REES46

class SDKManager: SDKManaging {
var sdk: PersonalizationSDK?

init() {
initializeSDK()
}

private func initializeSDK() {
sdk = createPersonalizationSDK(
shopId: "YOUR_SHOP_ID",
apiDomain: "YOUR_DOMAIN"
)
}
}