Skip to content

Commit 7962f53

Browse files
committed
Prepare for 3.2.0-beta1
1 parent fd649d4 commit 7962f53

File tree

3 files changed

+33
-9
lines changed

3 files changed

+33
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
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+
## [3.2.0-beta1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.0-beta1)
19+
#### Added
20+
- [Mobile Inbox](https://github.com/Iterable/iterable-android-sdk/blob/inbox/README.md#mobile-inbox)
21+
- [Mobile Inbox related events](https://github.com/Iterable/iterable-android-sdk/blob/inbox/README.md#mobile-inbox-events-and-the-events-lifecycle)
22+
23+
#### Changed
24+
- When `pushIntegrationName` is not set on `IterableConfig`, the SDK now defaults it to the app's package name.
25+
If you've set up your push integration with the new Mobile Apps UI, you don't have to specify `pushIntegrationName` in the SDK anymore.
26+
1827
## [3.1.4](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.4)
1928
#### Added
2029
- Push notifications now also display image thumbnails when collapsed

README.md

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,31 @@ For more details, read Iterable's [Setting up Android Push Notifications](https:
1717

1818
Congratulations, you've configured your Iterable project to send push notifications to your app! Now, let's set up the Iterable SDK.
1919

20-
## Installing the SDK
20+
## Installing a beta version of the SDK to use with Iterable's Mobile Inbox beta
2121

22-
Add the following dependencies to your application's **build.gradle**:
22+
> ⚠ **IMPORTANT**
23+
> Beta versions of this SDK are subject to Iterable's
24+
[Beta Mobile SDK Terms of Service](https://support.iterable.com/hc/articles/360034753412).
2325

24-
```groovy
25-
compile 'com.iterable:iterableapi:3.2.0-beta1'
26-
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 17.4.0
27-
```
26+
The current beta version of the SDK is `3.2.0-beta1`. Beta releases are not published to Maven; instead, use Jitpack:
27+
28+
1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
2829

29-
See [Bintray](https://bintray.com/davidtruong/maven/Iterable-SDK) for the latest version of the Iterable Android SDK.
30+
```groovy
31+
allprojects {
32+
repositories {
33+
...
34+
maven { url 'https://jitpack.io' }
35+
}
36+
}
37+
```
38+
39+
2. Add Iterable SDK dependencies:
40+
41+
```groovy
42+
implementation 'com.github.Iterable.iterable-android-sdk:iterableapi:3.2.0-beta1'
43+
implementation 'com.github.Iterable.iterable-android-sdk:iterableapi-ui:3.2.0-beta1'
44+
```
3045
3146
### Handling Firebase push messages and tokens
3247

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 27
1111

12-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.4\""
12+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.0-beta1\""
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}
@@ -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.1.4'
74+
libraryVersion = '3.2.0-beta1'
7575

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

0 commit comments

Comments
 (0)