Skip to content

Commit

Permalink
Merge pull request #356 from Iterable/MOB-3025-version-3.3.2
Browse files Browse the repository at this point in the history
Mob 3025 version 3.3.2
  • Loading branch information
Ayyanchira authored Jun 17, 2021
2 parents 86b777c + 0ff7471 commit c6967d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
#### Fixed
- nothing yet

## [3.3.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.3.2)
#### Added
- Added a new static method - `setContext` to `IterableAPI`. Use this method in your ReactNative project to pass context to IterableSDK from Application - `onCreate` method.

## [3.3.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.3.1)
#### Added
- The following properties have been added to the `CommerceItem` class:
Expand Down
8 changes: 3 additions & 5 deletions iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,25 @@ apply plugin: 'kotlin-android'
android {
compileSdkVersion 29


defaultConfig {
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}

debug {
testCoverageEnabled true
}
}

}

dependencies {
Expand All @@ -33,7 +31,6 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'


testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation 'androidx.test:runner:1.2.0'
Expand All @@ -54,7 +51,7 @@ ext {
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'

libraryVersion = '3.3.1'
libraryVersion = '3.3.2'

developerId = 'davidtruong'
developerName = 'David Truong'
Expand All @@ -68,6 +65,7 @@ ext {

apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

if(hasProperty("mavenPublishEnabled")) {
apply from: '../maven-push.gradle'
}
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.3.1\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.3.2\""

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

libraryVersion = '3.3.1'
libraryVersion = '3.3.2'

developerId = 'davidtruong'
developerName = 'David Truong'
Expand Down

0 comments on commit c6967d2

Please sign in to comment.