Skip to content

Commit

Permalink
[MOB-6599] prepare for 3.4.15 release (#603)
Browse files Browse the repository at this point in the history
* updates build.gradle and change log

* updates changelog

* minor edits

* addresses comments

* Added extra fixed lines

---------

Co-authored-by: [email protected] <[email protected]>
Co-authored-by: “Akshay <“[email protected]”>
  • Loading branch information
3 people authored Aug 31, 2023
1 parent d858880 commit d628203
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,34 @@ This project adheres to [Semantic Versioning](http://semver.org/).
#### Changed
- nothing yet

## [3.4.15](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.15)
#### Added

This release allows you to use projects hosted on Iterable's EU data center. If your project is hosted on Iterable's [European data center (EUDC)](https://support.iterable.com/hc/articles/17572750887444), configure the SDK to use Iterable's EU-based API endpoints:

_Java_

```java
IterableConfig config = new IterableConfig.Builder()
// ... other configuration options ...
.setDataRegion(IterableDataRegion.EU)
.build();
IterableApi.initialize(context, "<YOUR_API_KEY>", config);
```

_Kotlin_

```kotlin
val configBuilder = IterableConfig.Builder()
// ... other configuration options ...
.setDataRegion(IterableDataRegion.EU)
.build();
IterableApi.initialize(context, "<YOUR_API_KEY>", config);
```

#### Fixed
- nothing yet
- Addressed React Native SDK push notification deep linking issues where the app would restart instead of resuming the last activity upon being backgrounded.
- Resolves an additional push notification problem wherein the customActionHandler and urlHandler were not being invoked in specific scenarios, as documented in issue #470. (Credit to @tnortman-jabra for the report and the fix)

## [3.4.14](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.14)
#### Added
Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ext {
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'

libraryVersion = '3.4.14'
libraryVersion = '3.4.15'

developerId = 'davidtruong'
developerName = 'David Truong'
Expand Down
4 changes: 2 additions & 2 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdkVersion 16
targetSdkVersion 27

buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.14\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.15\""

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -76,7 +76,7 @@ ext {
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'

libraryVersion = '3.4.14'
libraryVersion = '3.4.15'

developerId = 'davidtruong'
developerName = 'David Truong'
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/inbox-customization/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ dependencies {
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
implementation 'com.google.android.material:material:1.1.0'

implementation 'com.iterable:iterableapi:3.4.14'
implementation 'com.iterable:iterableapi-ui:3.4.14'
implementation 'com.iterable:iterableapi:3.4.15'
implementation 'com.iterable:iterableapi-ui:3.4.15'
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'

testImplementation 'junit:junit:4.12'
Expand Down

0 comments on commit d628203

Please sign in to comment.