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
+26-8Lines changed: 26 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -34,18 +34,36 @@ Before starting with the SDK, you will need to set up Iterable push notification
34
34
35
35
For more information, read Iterable's [Setting up iOS Push Notifications](https://support.iterable.com/hc/articles/115000315806-Setting-Up-iOS-Push-Notifications) guide.
36
36
37
-
## Updating SDK for Inbox beta
38
-
39
-
- Beta releases are not pushed as normal releases to Cocoapods. Instead, point Cocoapods to the git tag.
40
-
- Update to 6.2.0-beta1 in Podfile
41
-
* pod 'Iterable-iOS-SDK', :git => 'https://github.com/Iterable/swift-sdk.git', :tag => '6.2.0-beta1'
42
-
- Same with Carthage:
43
-
* github "Iterable/swift-sdk" ~> 6.2.0-beta1
37
+
## Installing a beta version of the SDK to use with Iterable's Mobile Inbox beta
44
38
45
39
> ⚠**IMPORTANT**
46
-
> -Beta versions of this SDK are subject to Iterable's
40
+
> Beta versions of this SDK are subject to Iterable's
47
41
[Beta Mobile SDK Terms of Service](https://support.iterable.com/hc/articles/360034753412).
48
42
43
+
The current beta version of the SDK is `6.2.0-beta1`. Install it with
44
+
CocoaPods or Carthage:
45
+
46
+
- CocoaPods
47
+
48
+
Beta versions of the SDK are not pushed as normal releases to CocoaPods.
49
+
Instead, point CocoaPods to the git tag associated with a specific build.
50
+
For example, the following **Podfile** entry looks for the SDK build
51
+
tagged with `6.2.0-beta1`:
52
+
53
+
```
54
+
pod 'Iterable-iOS-SDK', :git => 'https://github.com/Iterable/swift-sdk.git', :tag => '6.2.0-beta1'
55
+
```
56
+
57
+
- Carthage
58
+
59
+
Like CocoaPods, Carthage can install an SDK build associated with a
60
+
specific git tag. For example, the following **Cartfile** entry looks for
61
+
an SDK build tagged with `6.2.0-beta1`:
62
+
63
+
```
64
+
github "Iterable/swift-sdk" ~> 6.2.0-beta1
65
+
```
66
+
49
67
## Installing with a dependency manager
50
68
51
69
Iterable's iOS SDK can be installed using [Carthage](https://github.com/Carthage/Carthage)
0 commit comments