Skip to content

Commit d628203

Browse files
evantk91evan.greer@iterable.com“Akshay
authored
[MOB-6599] prepare for 3.4.15 release (#603)
* 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]”>
1 parent d858880 commit d628203

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

CHANGELOG.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,34 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1212
#### Changed
1313
- nothing yet
1414

15+
## [3.4.15](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.15)
16+
#### Added
17+
18+
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:
19+
20+
_Java_
21+
22+
```java
23+
IterableConfig config = new IterableConfig.Builder()
24+
// ... other configuration options ...
25+
.setDataRegion(IterableDataRegion.EU)
26+
.build();
27+
IterableApi.initialize(context, "<YOUR_API_KEY>", config);
28+
```
29+
30+
_Kotlin_
31+
32+
```kotlin
33+
val configBuilder = IterableConfig.Builder()
34+
// ... other configuration options ...
35+
.setDataRegion(IterableDataRegion.EU)
36+
.build();
37+
IterableApi.initialize(context, "<YOUR_API_KEY>", config);
38+
```
39+
1540
#### Fixed
16-
- nothing yet
41+
- Addressed React Native SDK push notification deep linking issues where the app would restart instead of resuming the last activity upon being backgrounded.
42+
- 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)
1743

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

iterableapi-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ext {
4848
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
4949
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
5050

51-
libraryVersion = '3.4.14'
51+
libraryVersion = '3.4.15'
5252

5353
developerId = 'davidtruong'
5454
developerName = 'David Truong'

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
minSdkVersion 16
1212
targetSdkVersion 27
1313

14-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.14\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.15\""
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
@@ -76,7 +76,7 @@ ext {
7676
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
7777
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
7878

79-
libraryVersion = '3.4.14'
79+
libraryVersion = '3.4.15'
8080

8181
developerId = 'davidtruong'
8282
developerName = 'David Truong'

sample-apps/inbox-customization/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies {
3333
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
3434
implementation 'com.google.android.material:material:1.1.0'
3535

36-
implementation 'com.iterable:iterableapi:3.4.14'
37-
implementation 'com.iterable:iterableapi-ui:3.4.14'
36+
implementation 'com.iterable:iterableapi:3.4.15'
37+
implementation 'com.iterable:iterableapi-ui:3.4.15'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)