Skip to content

Commit 2575d92

Browse files
committed
revert whitespace
1 parent ab7aee4 commit 2575d92

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

CHANGELOG.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1111
## [3.5.5]
1212

1313
#### Added
14-
- - Added `IterableDecryptionFailureHandler` interface to handle decryption failures of PII information.
14+
- - Added `IterableDecryptionFailureHandler` interface to handle decryption failures of PII information.
1515

1616
#### Removed
1717
- Removed `encryptionEnforced` parameter from `IterableConfig` as data is now always encoded for security
@@ -69,7 +69,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6969

7070
## [3.4.17](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.17)
7171
#### Added
72-
- when JWT is invalid, `IterableAuthManager` is updated to fetch and store a new JWT token locally
72+
- when JWT is invalid, `IterableAuthManager` is updated to fetch and store a new JWT token locally
7373
- `IterableRequestTask` now has a retry mechanism that fetches a new JWT token and retries the request if JWT is invalid
7474
- retries are capped at a max of 5
7575

@@ -175,12 +175,12 @@ rest:
175175
(Note that Iterable's Android SDK does not store the last push payload at
176176
rest—before or after this update.)
177177

178-
For more information about this encryption in Android, examine the source code
178+
For more information about this encryption in Android, examine the source code
179179
for Iterable's Android SDK: [`IterableKeychain`](https://github.com/Iterable/iterable-android-sdk/blob/master/iterableapi/src/main/java/com/iterable/iterableapi/IterableKeychain.kt).
180180

181181
#### Storing in-app messages in memory
182182

183-
This release also allows you to have your Android apps (regardless of `minSdkVersion`)
183+
This release also allows you to have your Android apps (regardless of `minSdkVersion`)
184184
store in-app messages in memory, rather than in an unencrypted local file.
185185
However, an unencrypted local file is still the default option.
186186

@@ -206,14 +206,14 @@ IterableApi.initialize(context, "<YOUR_API_KEY>", configBuilder.build());
206206
```
207207

208208
When users upgrade to a version of your Android app that uses this version of
209-
the SDK (or higher), and you've set this configuration option to `true`, the
209+
the SDK (or higher), and you've set this configuration option to `true`, the
210210
local file used for in-app message storage (if it already exists) is deleted
211211
However, no data is lost.
212212

213213
#### Android upgrade instructions
214214

215215
If your app targets API level 23 or higher, this is a standard SDK upgrade, with
216-
no special instructions.
216+
no special instructions.
217217

218218
If your app targets an API level less than 23, you'll need to make the following
219219
changes to your project (which allow your app to build, even though it won't
@@ -227,10 +227,10 @@ encrypt data):
227227
## [3.4.9](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.9)
228228
#### Added
229229
- Added new methods for `setEmail`, `setUserId` and `updateEmail` which accepts `authToken`, providing more ways to pass `authToken` to SDK
230-
- Added two interface methods - `onTokenRegistrationSuccessful` and `onTokenRegistrationFailed`. Override these methods to see if authToken was successfully received by the SDK.
230+
- Added two interface methods - `onTokenRegistrationSuccessful` and `onTokenRegistrationFailed`. Override these methods to see if authToken was successfully received by the SDK.
231231

232232
#### Changed
233-
- `setAuthToken` method is now public allowing additional way to provide `authToken` to SDK.
233+
- `setAuthToken` method is now public allowing additional way to provide `authToken` to SDK.
234234

235235
## [3.4.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.8)
236236
#### Removed
@@ -365,8 +365,8 @@ encrypt data):
365365
- `sku` - The item's SKU
366366
- `description` - A description of the item
367367
- `url` - A URL associated with the item
368-
- `imageUrl` - A URL that points to an image of the item
369-
- `categories` - Categories associated with the item
368+
- `imageUrl` - A URL that points to an image of the item
369+
- `categories` - Categories associated with the item
370370

371371
Set these values on `CommerceItem` objects passed to the `IterableApi.trackPurchase` method.
372372

@@ -386,7 +386,7 @@ encrypt data):
386386
...
387387
}
388388
```
389-
389+
390390
- Updated minimum version for `firebase-messaging` to 20.3.0 to use `FirebaseMessaging.getToken()` instead of deprecated `FirebaseInstanceId.getToken()`.
391391
- Notifications will now show timestamp.
392392

@@ -601,7 +601,7 @@ Please refer to the [Migration guide](https://github.com/Iterable/iterable-andro
601601

602602
#### Changed
603603
- **BREAKING CHANGE:** Added `IterableContext` argument to `IterableCustomActionHandler`
604-
604+
605605
The new method signature is:
606606
```java
607607
boolean handleIterableCustomAction(IterableAction action, IterableActionContext actionContext)
@@ -722,69 +722,69 @@ IterableApi.initialize(context, "YOUR API KEY", config);
722722

723723
## [2.2.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.5)
724724
_Released on 2018-03-31_
725-
725+
726726
#### Changed
727727
- Updated requests to not send when there is an exception while constructing the JSON request body.
728-
728+
729729
#### Fixed
730730
- Fixed the reference to internal fields in NotificationCompat.Builder for buildVersion 27.
731731

732732
## [2.2.4](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.4)
733733
_Released on 2018-03-07_
734-
734+
735735
#### Fixed
736736
- Fixed the load sequence for retrieving a notification image.
737737

738738
## [2.2.3](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.3)
739739
_Released on 2018-01-22_
740-
740+
741741
#### Added
742742
- Added non-empty data body for notification rendering.
743743
- Added default channel id support.
744744

745745
## [2.2.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.2)
746746
_Released on 2017-11-30_
747-
747+
748748
#### Fixed
749749
- Fixed error in IterablePushRegistration when `getDeviceToken` returns an empty PushRegistrationObject.
750750

751751
## [2.2.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.1)
752752
_Released on 2017-11-20_
753-
753+
754754
#### Added
755755
- Added the `updateSubscriptions` function to create to modify channel, list, and message subscription preferences.
756756

757757
## [2.2.0](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.0)
758758
_Released on 2017-11-03_
759-
759+
760760
#### Added
761761
- Added support for html based in-app notifications.
762762

763763
## [2.1.9](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.9)
764764
_Released on 2017-10-20_
765-
766-
765+
766+
767767
#### Fixed
768768
- Fixed payload path for image url.
769769

770770
## [2.1.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.8)
771771
_Released on 2017-07-28_
772-
772+
773773
#### Added
774774
- Added support for android image notifications.
775-
775+
776776
#### Fixed
777777
- Fixed load error for empty image url.
778778

779779
## [2.1.7](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.7)
780780
_Released on 2017-07-19_
781-
781+
782782
#### Fixed
783783
- Fixed in-app button clicks without an action defined.
784784

785785
## [2.1.6](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.6)
786786
_Released on 2017-07-19_
787-
787+
788788
#### Added
789789
- Added the in-app consume logic to automatically remove the notification from list of in-app notifications.
790790

@@ -793,7 +793,7 @@ IterableApi.initialize(context, "YOUR API KEY", config);
793793

794794
## [2.1.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.5)
795795
_Released on 2017-06-09_
796-
796+
797797
#### Added
798798
- Added full support for newly created Firebase applications
799799
- Added new functionality for `registerForPush` which takes in the optional pushServicePlatform
@@ -835,7 +835,7 @@ IterableApi.initialize(context, "YOUR API KEY", config);
835835
_Released on 2016-12-28_
836836

837837
- added support for In-App Notifications with different views layouts
838-
- Full screen
838+
- Full screen
839839
- Bottom
840840
- Center
841841
- Top
@@ -844,6 +844,6 @@ IterableApi.initialize(context, "YOUR API KEY", config);
844844

845845
## [2.0.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.0.1)
846846
_Released on 2016-10-13_
847-
848-
#### Added
847+
848+
#### Added
849849
- Added ability to send data by userId

0 commit comments

Comments
 (0)