Skip to content

Commit

Permalink
Release 10.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Aug 9, 2019
1 parent 64a05c5 commit d34b925
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 3 deletions.
45 changes: 43 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@ Android ChangeLog

[Migration Guides](https://github.com/urbanairship/android-library/tree/master/documentation/migration)

Version 10.1.1 - August 9, 2019
===============================
Patch release to fix direct open reporting for notifications when an activity is resumed from
the background. Applications running 10.x should update.

Changes
-------
- Fixed direct open attributions for push notifications.

Version 11.0.2 - August 1, 2019
===============================
Patch release to fix an issue with not starting a custom activity with the intent filter action
`com.urbanairship.VIEW_RICH_PUSH_MESSAGE` for custom MessageCenter implementations and a fix for
a minor fullscreen In-App Automation style issue. Apps that have custom message center implementations
should update.

Changes
-------
- Fixed not starting an activity for the intent action `com.urbanairship.VIEW_RICH_PUSH_MESSAGE`.
- Fixed top padding on the fullscreen In-App Automation when the header is the top most element.

Version 10.1.0 - August 1, 2019
===============================
Minor release that backports changes and fixes from 11.0.2 release.
Expand All @@ -14,6 +35,26 @@ Changes
- Fixed top padding on the fullscreen In-App Automation when the header is the top most element.
- Synchronize use of SimpleDateFormat instance across threads.

Version 11.0.1 - July 17, 2019
==============================
Patch release to fix a rare crash caused by accessing a SimpleDateFormat across multiple threads.

Changes
-------
- Synchronize use of SimpleDateFormat instance across threads.

Version 11.0.0 - July 11, 2019
==============================
Major release that migrates from the Android Support Libraries to the Jetpack (AndroidX) Libraries.
Applications are required to migrate to Android X before using this version. For more info, see
[Migrating to AndroidX](https://developer.android.com/jetpack/androidx/migrate)

Changes
-------
- Migrated to AndroidX.
- Updated banner in-app message adapter to make it easier to customize the banner view.
- Allow defining notification channel `sound` with a raw resource ID through XML instead of a URL.


Version 10.0.2 - June 26, 2019
==============================
Expand All @@ -26,7 +67,7 @@ Changes
- Fixed banner in-app messages not dismissing when clicking the banner body.
- Fixed banner in-app messages not auto dismissing.
- Fixed background location updates on Android O+.

Version 10.0.1 - June 4, 2019
=============================
Patch release fixing a minor regression in AirshipNotifiationProvider
Expand All @@ -38,7 +79,7 @@ Changes
- AirshipNotificationProvider defaults to the small icon specified in
the PushMessage, if available.
- AirshipNotificationProvider uses getters instead of instance variables
when building its default NotificationArguments.
when building its default NotificationArguments.

Version 10.0.0 - May 22, 2019
=============================
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {

ext {
// Airship Version - major.minor.patch
airshipVersion = '10.1.0'
airshipVersion = '10.1.1'

// Airship Version Qualifier beta, release, etc...
// airshipVersionQualifier = beta
Expand Down
1 change: 1 addition & 0 deletions urbanairship-core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@

<activity
android:name="com.urbanairship.push.NotificationProxyActivity"
android:taskAffinity="com.urbanairship.push.NotificationProxyActivity"
android:exported="false"
android:theme="@android:style/Theme.NoDisplay" />

Expand Down

0 comments on commit d34b925

Please sign in to comment.