Skip to content

Commit 748c5e7

Browse files
committed
Batch SDK 1.11.0
1 parent 1d6d558 commit 748c5e7

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

SDK/Batch.aar

36.3 KB
Binary file not shown.

SDK/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
CHANGELOG
22
=========
33

4+
1.11.0
5+
----
6+
* Added support for Banners in In-App Messaging
7+
8+
If your app uses the Mobile Landing/In-App Messaging manual mode, you need to update your implementation to support banners. Please check the [updated manual mode documentation](https://batch.com/doc/android/mobile-landings.html) for more information.
9+
10+
* Fix an issue where an exception could be thrown if an invalid deeplink was supplied when setting up an In-App Message's buttons.
11+
* The SDK will now log the current Installation ID on start
12+
13+
1.10.2
14+
----
15+
* Unobfuscated InAppMessageUserActionSource, which is implemented by BatchInAppMessage
16+
* Fixed an exception that could be thrown when using the Inbox APIs in the background.
17+
While it will not throw an exception anymore, the fetcher will still not work in these conditions if used in 'user identifier' mode: In order to fix this, please use Batch.Inbox.getFetcher(Context, String, String) rather than Batch.Inbox.getFetcher(String, String).
18+
* Fix a bug where the image of an In-App message could be distorted after a double rotation.
19+
* Added a method `getNotificationIdentifier()` on BatchInboxNotificationContent, which allows you to retrieve a unique identifier for this specific notification.
20+
* Added a variant of `Batch.Push.appendBatchData()` compatible with `BatchNotificationInterceptor` implementations
21+
* Added `Batch.Push.makePendingIntent(Intent)`, to generate a valid PendingIntent from an Intent, suitable for a Notification's builder. Please note that it will override the intent's action. If you rely on a custom action, you will have to make your own PendingIntent.
22+
* Added `Batch.Push.makePendingIntentForDeeplink(String)`, to generate a valid PendingIntent for a deeplink string, suitable for a Notification's builder, using Batch's action activity.
23+
* Improve builtin proguard rules. The number of library classes kept because of Batch is now much lower.
24+
* Added detection for invalid sender IDs, and overall better error reporting when FCM/GCM registration fails.
25+
426
1.10.1
527
----
628
* Improved handling of new Android O backgrounding limitations

Sample_Project/sample/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ dependencies {
3535
compile 'com.google.android.gms:play-services-base:9.6.1'
3636
compile 'com.google.android.gms:play-services-gcm:9.6.1'
3737
compile 'com.google.android.gms:play-services-ads:9.6.1'
38-
compile 'com.batch.android:batch-sdk:1.10+'
38+
compile 'com.batch.android:batch-sdk:1.11+'
3939
}

0 commit comments

Comments
 (0)