https://github.com/rees46/demo-ios
Demo app
https://github.com/rees46/demo-ios
Last synced: 5 months ago
JSON representation
Demo app
- Host: GitHub
- URL: https://github.com/rees46/demo-ios
- Owner: rees46
- License: bsd-3-clause
- Created: 2024-06-11T08:41:14.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-05-30T22:41:57.000Z (about 1 year ago)
- Last Synced: 2025-05-31T09:26:30.678Z (about 1 year ago)
- Language: Swift
- Size: 923 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Demo shop created on the basis of REES46- IOS SDK
[](https://cocoapods.org/pods/REES46)


[](https://cocoapods.org/pods/REES46)


## 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"
)
}
}