Skip to content

Commit 340ec57

Browse files
Merge pull request #15 from Iterable/feature/release-6.0.0
First Swift SDK Release 6.0.0.
2 parents d043a0a + 49db303 commit 340ec57

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Iterable-iOS-AppExtensions.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.name = "Iterable-iOS-AppExtensions"
1919
s.module_name = "IterableAppExtensions"
20-
s.version = "1.0.1"
20+
s.version = "6.0.0"
2121
s.summary = "App Extensions for Iterable SDK"
2222

2323
s.description = <<-DESC

Iterable-iOS-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.name = "Iterable-iOS-SDK"
1919
s.module_name = "IterableSDK"
20-
s.version = "1.0.1"
20+
s.version = "6.0.0"
2121
s.summary = "Iterable's official SDK for iOS"
2222

2323
s.description = <<-DESC

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pod 'Iterable-iOS-AppExtensions'
2929
```
3030

3131

32-
Please look at the included sample pod file [HERE](./sample-apps/swift-sample-app/Podfile).
32+
Please look at the included sample pod file [HERE](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/swift-sample-app/Podfile?raw=true).
3333

3434
Congratulations! You have now imported Iterable SDK into your project!
3535

@@ -42,22 +42,22 @@ Attached to the release you will find two framework bundles.
4242

4343
1. In XCode choose the target for your app. Now add IterableSDK.framework to the **embedded binaries** section. If you want to use Iterable Rich Notification Extension, you will have to add IterableAppExtensions.framework to the embedded binaries section as well.
4444

45-
![Linking](./images/embedded-binaries.png)
45+
![Linking](https://github.com/Iterable/swift-sdk/blob/master/images/embedded-binaries.png?raw=true)
4646

4747
2. If you want to use Iterable Rich Notifiation Extension, you will need to add IterableAppExtension.framework to **Linked Frameworks and Libraries** section of your **app extension** target (not app target). Please note that you will have to add the IterableAppExtension.framework bundle to **both** the app target (step 1) and app extension target (step 2) of your project. In the app target it goes in the 'Embedded Binaries' section and in app extension target it goes in the 'Linked Frameworks and Libraries' section.
4848

49-
![Linking](./images/app-extension-linked-framework.png)
49+
![Linking](https://github.com/Iterable/swift-sdk/blob/master/images/app-extension-linked-framework.png?raw=true)
5050

5151
3. In build settings, set `Always Embed Swift Standard Libraries` setting to 'Yes'. This is required for Objective C projects.
5252

53-
![Linking](./images/build-setting.png)
53+
![Linking](https://github.com/Iterable/swift-sdk/blob/master/images/build-setting.png?raw=true)
5454

5555

5656
# Initializing the SDK
5757
**Note:** Sample projects are included in this repo.
5858

59-
- [Swift Sample Project](./sample-apps/swift-sample-app)
60-
- [ObjC Sample Project](./sample-apps/objc-sample-app)
59+
- [Swift Sample Project](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/swift-sample-app?raw=true)
60+
- [ObjC Sample Project](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/objc-sample-app?raw=true)
6161

6262

6363
1. ##### Initialize the API with API key.
@@ -117,7 +117,7 @@ Attached to the release you will find two framework bundles.
117117
[IterableAPI registerToken:deviceToken];
118118
}
119119
```
120-
See example in sample app delegate [here](./sample-apps/swift-sample-app/swift-sample-app/AppDelegate.swift).
120+
See example in sample app delegate [here](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/swift-sample-app/swift-sample-app/AppDelegate.swift).
121121

122122
Congratulations! You can now send remote push notifications to your device from Iterable! Please note that you can't send push notifications until you set the userId or email. Please see sample applications to see a reference implementation.
123123

@@ -149,7 +149,7 @@ Congratulations! You can now send remote push notifications to your device from
149149
150150
Push notifications and action buttons may have `openUrl` actions attached to them. When a URL is specified, the SDK first calls `urlDelegate` specified in your `IterableConfig` object. You can use this delegate to handle `openUrl` actions the same way as you handle normal deep links. If the delegate is not set or if it returns `false` (the default), the SDK will open Safari with that URL. If you want to navigate to a UIViewController on receiving a deep link, you should do so in the `urlDelegate`.
151151
152-
In the code below, `DeepLinkHandler` is a custom handler which is reponsible for deep link navigation. You have to provide implementation for deep link navigation. Please see [sample application](./sample-apps/swift-sample-app/swift-sample-app.xcworkspace) for a reference implementation.
152+
In the code below, `DeepLinkHandler` is a custom handler which is reponsible for deep link navigation. You have to provide implementation for deep link navigation. Please see [sample application](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/swift-sample-app?raw=true) for a reference implementation.
153153
154154
Swift:
155155
@@ -331,7 +331,7 @@ Also see our [push notification setup FAQs](http://support.iterable.com/hc/en-us
331331
332332
The MIT License
333333
334-
See [LICENSE](https://github.com/Iterable/swift-sdk/blob/master/LICENSE)
334+
See [LICENSE](https://github.com/Iterable/swift-sdk/blob/master/LICENSE?raw=true)
335335
336336
## Want to Contribute?
337337

0 commit comments

Comments
 (0)