Skip to content

Commit 7c3b69b

Browse files
[MOBILE-1821] Release 7.1.0 (#55)
1 parent fe92e9c commit 7c3b69b

File tree

8 files changed

+27
-7
lines changed

8 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Airship Titanium Module
22

3+
## Version 7.1.0 - August 20, 2020
4+
Minor release bundling the following SDK updates:
5+
6+
### iOS (Updated iOS SDK from 13.4.0 to 13.5.4)
7+
- Addresses [Dynamic Type](https://developer.apple.com/documentation/uikit/uifont/scaling_fonts_automatically) build warnings and Message Center Inbox UI issues. (13.5.4)
8+
- Fixes a crash with Accengage data migration. (13.5.3)
9+
- Improves iOS 14 support and fixes In-App Automation issues. (13.5.2)
10+
- Improves compatibility with Xcode 12, adding new messageCenterStyle properties to the default message center UI classes to avoid conflicting with UIKit changes in iOS 14 (13.5.1)
11+
- Adds support for application-defined locale overrides, and fixes issues in In-App Automation and the Actions Framework. (13.5.0)
12+
13+
For more details, see the [iOS CHANGELOG](https://github.com/urbanairship/ios-library/blob/13.5.4/CHANGELOG.md).
14+
15+
### Android (Updated Android SDK from 13.2.1 to 13.3.2)
16+
- Fixes In-App Automation version triggers to only fire on app updates instead of new installs. (13.3.2)
17+
- Fixes ADM registration exceptions that occur on first run and text alignment issues with In-App Automation. (13.3.1)
18+
- Allows overriding the locale used by Airship. (13.3.0)
19+
- Fixes In-App automation display intervals being ignored if the app is killed and HMS token registration on older Huawei devices. (13.2.2)
20+
21+
For more details, see the [Android CHANGELOG](https://github.com/urbanairship/android-library/blob/13.3.2/CHANGELOG.md).
22+
323
## Version 7.0.0 - July 8, 2020
424
Major update to add significant functionality to the Titanium module. These updates take advantage of the latest iOS and Android SDKs APIs.
525

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
2-
def airshipVersion = "13.2.1"
2+
def airshipVersion = "13.3.2"
33

44
// ADM & FCM push providers
55
implementation "com.urbanairship.android:urbanairship-fcm:$airshipVersion"

android/manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# this is your module manifest and used by Titanium
33
# during compilation, packaging, distribution, etc.
44
#
5-
version: 7.0.0
5+
version: 7.1.0
66
apiversion: 4
77
architectures: arm64-v8a armeabi-v7a x86 x86_64
88
description: Airship Titanium module
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ti.airship;
22

33
public class TiAirshipModuleVersion {
4-
static final String TI_AIRSHIP_MODULE_VERSION = "7.0.0";
4+
static final String TI_AIRSHIP_MODULE_VERSION = "7.1.0";
55
}
66

ios/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "urbanairship/ios-library" == 13.4.0
1+
github "urbanairship/ios-library" == 13.5.4

ios/Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "urbanairship/ios-library" "13.4.0"
1+
github "urbanairship/ios-library" "13.5.4"

ios/Classes/TiAirshipModuleVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#import "TiAirshipModuleVersion.h"
44

5-
static NSString *const tiAirshipModuleVersionString = @"7.0.0";
5+
static NSString *const tiAirshipModuleVersionString = @"7.1.0";
66

77
@implementation TiAirshipModuleVersion
88

ios/manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# this is your module manifest and used by Titanium
33
# during compilation, packaging, distribution, etc.
44
#
5-
version: 7.0.0
5+
version: 7.1.0
66
apiversion: 2
77
architectures: arm64 x86_64
88
description: AirshipTitanium

0 commit comments

Comments
 (0)