Manos Chorianopoulos

version 2.1.0

......@@ -4,7 +4,7 @@
**Get started with SwiftWarplyFramework in just 5 minutes!**
**Version**: 2.0.1 | **Minimum iOS**: 17.0 | **Swift**: 5.0+
**Version**: 2.1.0 | **Minimum iOS**: 17.0 | **Swift**: 5.0+
---
......@@ -51,7 +51,7 @@ platform :ios, '17.0'
target 'YourApp' do
use_frameworks!
pod 'SwiftWarplyFramework', '~> 2.0.1'
pod 'SwiftWarplyFramework', :git => 'https://git@git.warp.ly/open-source/warply_sdk_framework.git', :tag => 2.1.0
end
```
......@@ -1095,7 +1095,7 @@ Task {
When reporting issues, please include:
1. **Framework Version**: `2.0.1`
1. **Framework Version**: `2.1.0`
2. **iOS Version**: Minimum 17.0
3. **Error Details**: Full error messages and stack traces
4. **Code Sample**: Minimal reproducible example
......@@ -1106,7 +1106,7 @@ When reporting issues, please include:
```swift
// Get framework version and status
print("Framework Version: 2.0.1")
print("Framework Version: 2.1.0")
print("SDK Initialized: \(WarplySDK.shared != nil)")
print("Network Status: \(WarplySDK.shared.getNetworkStatus())")
print("Current Language: \(WarplySDK.shared.applicationLocale)")
......
......@@ -2,7 +2,7 @@
## 🚀 Essential Guide for Developers
**Version**: 2.0.1 | **iOS**: 17.0+ | **Swift**: 5.0+
**Version**: 2.1.0 | **iOS**: 17.0+ | **Swift**: 5.0+
---
......@@ -10,7 +10,7 @@
```ruby
# Podfile
pod 'SwiftWarplyFramework', '~> 2.0.1'
pod 'SwiftWarplyFramework', :git => 'https://git@git.warp.ly/open-source/warply_sdk_framework.git', :tag => 2.1.0
```
---
......@@ -323,7 +323,7 @@ func safeAPICall() {
## 🔍 Debug Info
```swift
print("SDK Version: 2.0.1")
print("SDK Version: 2.1.0")
print("App UUID: \(WarplySDK.shared.appUuid)")
print("Merchant ID: \(WarplySDK.shared.merchantId)")
print("Language: \(WarplySDK.shared.applicationLocale)")
......
Pod::Spec.new do |spec|
spec.name = "SwiftWarplyFramework"
spec.version = "2.0.1"
spec.version = "2.1.0"
spec.summary = "A framework used for several functionalities."
spec.description = "This is the Warply framework used for react native or swift apps for analytics, push notifications and the functionality of the app."
......@@ -17,7 +17,7 @@ Pod::Spec.new do |spec|
spec.platform = :ios, "17.0"
spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "2.0.1" }
spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "2.1.0" }
# spec.public_header_files = "SwiftWarplyFramework.framework/Headers/*.h"
# ==> OLD
......
......@@ -9,7 +9,7 @@ SwiftWarplyFramework is an iOS SDK that provides loyalty program functionality,
- Minimum iOS Version: 17.0
- Swift Version: 5.0+
- Build System: CocoaPods
- Framework Version: 2.0.1
- Framework Version: 2.1.0
### Dependencies
- RSBarcodes_Swift (~> 5.2.0) - Barcode scanning and generation
......