Skip to content

Commit 93b4202

Browse files
author
Tamara Zbitnaja
committed
Merge remote-tracking branch 'upstream/master'
2 parents 0b6031a + 7caa3c1 commit 93b4202

8 files changed

+50
-94
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ QueueITLib.xcworkspace
44
builds
55
xcuserdata/
66
/.idea
7+
build
8+
QueueITLibSwift.xcframework.zip
9+
.DS_Store

Package.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// swift-tools-version:5.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
34
import PackageDescription
45

56
let package = Package(

QueueITLib/PrivacyInfo.xcprivacy

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyCollectedDataTypes</key>
6+
<array>
7+
<dict>
8+
<key>NSPrivacyCollectedDataType</key>
9+
<string>NSPrivacyCollectedDataTypeOtherDataTypes</string>
10+
<key>NSPrivacyCollectedDataTypeLinked</key>
11+
<false/>
12+
<key>NSPrivacyCollectedDataTypeTracking</key>
13+
<false/>
14+
<key>NSPrivacyCollectedDataTypePurposes</key>
15+
<array>
16+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
17+
</array>
18+
</dict>
19+
<dict>
20+
<key>NSPrivacyCollectedDataType</key>
21+
<string>NSPrivacyCollectedDataTypeDeviceID</string>
22+
<key>NSPrivacyCollectedDataTypeLinked</key>
23+
<false/>
24+
<key>NSPrivacyCollectedDataTypeTracking</key>
25+
<false/>
26+
<key>NSPrivacyCollectedDataTypePurposes</key>
27+
<array>
28+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
29+
</array>
30+
</dict>
31+
</array>
32+
<key>NSPrivacyTracking</key>
33+
<false/>
34+
</dict>
35+
</plist>

QueueITLib/QueueCache.h

Lines changed: 0 additions & 13 deletions
This file was deleted.

QueueITLib/QueueCache.m

Lines changed: 0 additions & 78 deletions
This file was deleted.

QueueITLib/QueueConsts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
#define QueueCloseUrl @"queueit://close"
55
#define QueueRestartSessionUrl @"queueit://restartSession"
6-
#define SDKVersion @"iOS-3.4.0";
6+
#define SDKVersion @"iOS-3.4.2";
77

88
#endif

QueueITLibrary.podspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = "QueueITLibrary"
3-
s.version = "3.4.0"
3+
s.version = "3.4.2"
44
s.summary = "Library for integrating Queue-it into an iOS app using web uI"
55
s.homepage = "https://github.com/queueit/ios-webui-sdk"
66
s.license = 'MIT'
77
s.authors = { 'Queue-It' => 'https://queue-it.com' }
88
s.platform = :ios, '9.3'
9-
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.4.0' }
9+
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.4.2' }
1010
s.requires_arc = true
1111
s.source_files = "QueueITLib/*.{h,m}"
12+
s.resource_bundles = {'QueueITLibrary' => ['QueueITLib/PrivacyInfo.xcprivacy']}
1213
end

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ Then, run the following command:
4949
pod install
5050
```
5151

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+
5259
## Usage
5360

5461
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

Comments
 (0)