You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-16Lines changed: 18 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,27 @@ From version 2.13.0 the QueueITEngine no longer supports the UIWebView and will
19
19
20
20
Version 3.0.0 introduces breaking chances as the interface to `QueueITEngine` has been modified so the `run` function is using the NSError pattern to return errors instead of throwing a NSException.
21
21
22
+
## Swift Package Manager
23
+
24
+
1. In Xcode, select File > Add Packages
25
+
2. For the URL, paste in `https://github.com/queueit/ios-webui-sdk.git`
26
+
3. Configure how you'd like to track changes, and add to your project
27
+
4. Finally, click Add Package
28
+
29
+
### Possible error generated when adding Package Dependency
30
+
* Error generated during build "product 'QueueIt' required by package 'mylibrary' target 'MyLibrary' not found"
31
+
* resolved by updating the dependency product name to "QueueItLibrary" for package "ios-web-sdk"
32
+
33
+
#### Example:
34
+

35
+
22
36
### XCFramework
23
37
24
38
You can manually add the XCFramework that's published in [releases](https://github.com/queueit/ios-webui-sdk/releases).
25
39
26
-
### CocoaPods
40
+
### CocoaPods [Deprecated]
41
+
42
+
> **Note**: CocoaPods distribution is deprecated and readonly. Last released SDK version to CocoaPods is `3.4.4` and no new updates will be published in the future. We recommend using [Swift Package Manager](#swift-package-manager) or [XCFramework](#xcframework) instead.
27
43
28
44
[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:
29
45
@@ -39,7 +55,7 @@ platform :ios, '9.3'
39
55
use_frameworks!
40
56
41
57
target '<Your Target Name>'do
42
-
pod 'QueueITLibrary', '~> 3.5.0'
58
+
pod 'QueueITLibrary', '~> 3.4.4'
43
59
end
44
60
```
45
61
@@ -49,20 +65,6 @@ Then, run the following command:
49
65
pod install
50
66
```
51
67
52
-
## Swift Package Manager
53
-
54
-
1. In Xcode, select File > Add Packages
55
-
2. For the URL, paste in `https://github.com/queueit/ios-webui-sdk.git`
56
-
3. Configure how you'd like to track changes, and add to your project
57
-
4. Finally, click Add Package
58
-
59
-
### Possible error generated when adding Package Dependency
60
-
* Error generated during build "product 'QueueIt' required by package 'mylibrary' target 'MyLibrary' not found"
61
-
* resolved by updating the dependency product name to "QueueItLibrary" for package "ios-web-sdk"
62
-
63
-
#### Example:
64
-

65
-
66
68
## Usage
67
69
68
70
We have a repository with a demo app [here](https://github.com/queueit/ios-demo-app"iOS demo app"), but you can get the basic idea of how to use the library in the following example.
0 commit comments