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
1. Navigate to File > Swift Packages > Add Package Dependency
44
-
1. Search for PubNub and select the swift package owned by pubnub, and hit the Next button
45
-
1. Use the `Up to Next Major Version` rule spanning from `8.0.0` < `9.0.0`, and hit the Next button
43
+
2. Navigate to File > Add Package Dependencies
44
+
3. Enter the package URL: `https://github.com/pubnub/swift.git`
45
+
4. Use the `Up to Next Major Version` rule spanning from `9.0.0` < `10.0.0`
46
+
5. Click `Add Package`
47
+
6. From the list of package products, assign `PubNubSDK` to your target application
46
48
47
49
For more information see Apple's guide on [Adding Package Dependencies to Your App](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app)
48
50
@@ -53,7 +55,7 @@ For more information see Apple's guide on [Adding Package Dependencies to Your A
53
55
use_frameworks!
54
56
55
57
target 'YOUR_TARGET_NAME'do
56
-
pod 'PubNubSwift', '~> 8.0'
58
+
pod 'PubNubSwift', '~> 9.0'
57
59
end
58
60
```
59
61
@@ -72,7 +74,7 @@ Officially supported: Carthage 0.39.1 and up.
72
74
Add the following to `Cartfile`:
73
75
74
76
```ruby
75
-
github "pubnub/swift"~>8.0
77
+
github "pubnub/swift"~>9.0
76
78
```
77
79
78
80
Then in the directory containing your `Cartfile`, execute the following:
0 commit comments