Skip to content

Commit 42f2ee9

Browse files
authored
Merge pull request #252 from Iterable/MOB-1889-Release-SDK-3.2.5
Prepare for 3.2.5
2 parents 6306685 + a9c82d5 commit 42f2ee9

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
19+
## [3.2.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.5)
20+
#### Changed
21+
- `app_name` was removed from published strings and replaced with plain string values in test manifests.
22+
23+
#### Fixed
24+
- Fixed an issue where in-app click events were not being registered after displaying an in-app message.
25+
- Fixed NullPointerExceptions in `IterableInAppFragmentHTMLNotification` that could occur in some cases when the activity is destroyed and recreated.
26+
1827
## [3.2.4](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.4)
1928
#### Added
2029
- Added support for new parameters - `mergeNestedObject` in `updateUser` method.

iterableapi-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ext {
5252
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
5353
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
5454

55-
libraryVersion = '3.2.4'
55+
libraryVersion = '3.2.5'
5656

5757
developerId = 'davidtruong'
5858
developerName = 'David Truong'

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
minSdkVersion 15
1111
targetSdkVersion 27
1212

13-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.4\""
13+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.5\""
1414

1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1616
}
@@ -71,7 +71,7 @@ ext {
7171
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
7272
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
7373

74-
libraryVersion = '3.2.4'
74+
libraryVersion = '3.2.5'
7575

7676
developerId = 'davidtruong'
7777
developerName = 'David Truong'

iterableapi/src/main/java/com/iterable/iterableapi/IterableApi.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public void setEmail(@Nullable String email) {
287287
* @param email User email
288288
* @param authToken Authorization token
289289
*/
290-
public void setEmail(@Nullable String email, @Nullable String authToken) {
290+
private void setEmail(@Nullable String email, @Nullable String authToken) {
291291
if (_email != null && _email.equals(email)) {
292292
return;
293293
}
@@ -323,7 +323,7 @@ public void setUserId(@Nullable String userId) {
323323
* @param userId User ID
324324
* @param authToken Authorization token
325325
*/
326-
public void setUserId(@Nullable String userId, @Nullable String authToken) {
326+
private void setUserId(@Nullable String userId, @Nullable String authToken) {
327327
if (_userId != null && _userId.equals(userId)) {
328328
return;
329329
}
@@ -532,10 +532,11 @@ public void updateEmail(final @NonNull String newEmail) {
532532
/**
533533
* Updates the current user's email.
534534
* Also updates the current email and authToken in this IterableAPI instance if the API call was successful.
535-
* @param newEmail New email
535+
*
536+
* @param newEmail New email
536537
* @param authToken Authorization token
537538
*/
538-
public void updateEmail(final @NonNull String newEmail, final @Nullable String authToken) {
539+
private void updateEmail(final @NonNull String newEmail, final @Nullable String authToken) {
539540
updateEmail(newEmail, authToken, null, null);
540541
}
541542

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.2.4'
37-
implementation 'com.iterable:iterableapi-ui:3.2.4'
36+
implementation 'com.iterable:iterableapi:3.2.5'
37+
implementation 'com.iterable:iterableapi-ui:3.2.5'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)