Skip to content

Commit c6967d2

Browse files
authored
Merge pull request #356 from Iterable/MOB-3025-version-3.3.2
Mob 3025 version 3.3.2
2 parents 86b777c + 0ff7471 commit c6967d2

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.3.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.3.2)
19+
#### Added
20+
- Added a new static method - `setContext` to `IterableAPI`. Use this method in your ReactNative project to pass context to IterableSDK from Application - `onCreate` method.
21+
1822
## [3.3.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.3.1)
1923
#### Added
2024
- The following properties have been added to the `CommerceItem` class:

iterableapi-ui/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,25 @@ apply plugin: 'kotlin-android'
44
android {
55
compileSdkVersion 29
66

7-
87
defaultConfig {
98
minSdkVersion 15
109
targetSdkVersion 28
1110
versionCode 1
1211
versionName "1.0"
1312
vectorDrawables.useSupportLibrary = true
1413
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
15-
1614
}
1715

1816
buildTypes {
1917
release {
2018
minifyEnabled false
2119
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2220
}
21+
2322
debug {
2423
testCoverageEnabled true
2524
}
2625
}
27-
2826
}
2927

3028
dependencies {
@@ -33,7 +31,6 @@ dependencies {
3331
implementation 'androidx.appcompat:appcompat:1.0.0'
3432
implementation 'androidx.recyclerview:recyclerview:1.0.0'
3533

36-
3734
testImplementation 'junit:junit:4.12'
3835
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
3936
androidTestImplementation 'androidx.test:runner:1.2.0'
@@ -54,7 +51,7 @@ ext {
5451
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
5552
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
5653

57-
libraryVersion = '3.3.1'
54+
libraryVersion = '3.3.2'
5855

5956
developerId = 'davidtruong'
6057
developerName = 'David Truong'
@@ -68,6 +65,7 @@ ext {
6865

6966
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
7067
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
68+
7169
if(hasProperty("mavenPublishEnabled")) {
7270
apply from: '../maven-push.gradle'
7371
}

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
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.3.1\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.3.2\""
1515

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

77-
libraryVersion = '3.3.1'
77+
libraryVersion = '3.3.2'
7878

7979
developerId = 'davidtruong'
8080
developerName = 'David Truong'

0 commit comments

Comments
 (0)