Skip to content

Commit f608a83

Browse files
authored
Merge pull request #131 from apptentive/develop
Release 5.5.5
2 parents 57b49a4 + 8f45a25 commit f608a83

File tree

11 files changed

+27
-18
lines changed

11 files changed

+27
-18
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ This document lets you know what has changed in the React Native module. For cha
55
- [Android Changelog](https://github.com/apptentive/apptentive-android/blob/master/CHANGELOG.md)
66
- [iOS Changelog](https://github.com/apptentive/apptentive-ios/blob/master/CHANGELOG.md)
77

8+
9+
# 2020-09-15 - v5.5.5
10+
11+
- Fixed a crashing bug in Surveys for projects built with Xcode 12 and run on iOS 14.
12+
- Increased iOS deployment target to version 10.3
13+
- Apptentive Android SDK: 5.5.4
14+
- Apptentive iOS SDK: 5.3.0
15+
816
# 2020-09-08 - v5.5.4
917

1018
- Fixed Android 11 support.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
33
<string name="apptentive_distribution">React Native</string>
4-
<string name="apptentive_distribution_version">5.5.4</string>
4+
<string name="apptentive_distribution_version">5.5.5</string>
55
</resources>

apptentive-react-native.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "apptentive-react-native"
3-
s.version = "5.5.4"
3+
s.version = "5.5.5"
44
s.summary = "Apptentive SDK module for React Native"
55

66
s.description = <<-DESC

ios/RNApptentiveModule.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ - (dispatch_queue_t)methodQueue
5252
if (configuration) {
5353
configuration.appID = configurationDictionary[@"appleID"];
5454
configuration.distributionName = @"React Native";
55-
configuration.distributionVersion = @"5.5.4";
55+
configuration.distributionVersion = @"5.5.5";
5656
[Apptentive registerWithConfiguration:configuration];
5757

5858
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(messageCenterUnreadCountChangedNotification:) name:ApptentiveMessageCenterUnreadCountChangedNotification object:nil];

ios/RNApptentiveModule.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
158158
GCC_WARN_UNUSED_FUNCTION = YES;
159159
GCC_WARN_UNUSED_VARIABLE = YES;
160-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
160+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
161161
MTL_ENABLE_DEBUG_INFO = YES;
162162
ONLY_ACTIVE_ARCH = YES;
163163
SDKROOT = iphoneos;
@@ -194,7 +194,7 @@
194194
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
195195
GCC_WARN_UNUSED_FUNCTION = YES;
196196
GCC_WARN_UNUSED_VARIABLE = YES;
197-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
197+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
198198
MTL_ENABLE_DEBUG_INFO = NO;
199199
SDKROOT = iphoneos;
200200
VALIDATE_PRODUCT = YES;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apptentive-react-native",
3-
"version": "5.5.4",
3+
"version": "5.5.5",
44
"description": "React Native Module for Apptentive SDK",
55
"main": "js/index.js",
66
"types": "js/index.d.ts",

sample/ios/Podfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Uncomment the next line to define a global platform for your project
2-
platform :ios, '9.0'
2+
platform :ios, '10.3'
33

44
target 'sample' do
55
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
66
use_frameworks!
77

88
# Pods for sample
9-
pod 'apptentive-ios', '5.2.14'
9+
pod 'apptentive-ios', '5.3.0'
1010

1111
end

sample/ios/Podfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PODS:
2-
- apptentive-ios (5.2.14)
2+
- apptentive-ios (5.3.0)
33

44
DEPENDENCIES:
5-
- apptentive-ios (= 5.2.14)
5+
- apptentive-ios (= 5.3.0)
66

77
SPEC REPOS:
88
trunk:
99
- apptentive-ios
1010

1111
SPEC CHECKSUMS:
12-
apptentive-ios: 16951b1f9546bbae9165792679f865dc53bbe82f
12+
apptentive-ios: 9f78b6a860afc3a64ff992bfa7a7a19897eb099b
1313

14-
PODFILE CHECKSUM: 6054e413be9c8c5ca4dd0d946a9d8e08124d4257
14+
PODFILE CHECKSUM: b3bcae995bfc4551ded4614aae57fb8d8a064231
1515

16-
COCOAPODS: 1.9.3
16+
COCOAPODS: 1.10.0.beta.2

sample/ios/sample.xcodeproj/project.pbxproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -744,6 +744,7 @@
744744
developmentRegion = English;
745745
hasScannedForEncodings = 0;
746746
knownRegions = (
747+
English,
747748
en,
748749
Base,
749750
);
@@ -1491,7 +1492,7 @@
14911492
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
14921493
GCC_WARN_UNUSED_FUNCTION = YES;
14931494
GCC_WARN_UNUSED_VARIABLE = YES;
1494-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1495+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
14951496
MTL_ENABLE_DEBUG_INFO = YES;
14961497
ONLY_ACTIVE_ARCH = YES;
14971498
SDKROOT = iphoneos;
@@ -1537,7 +1538,7 @@
15371538
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
15381539
GCC_WARN_UNUSED_FUNCTION = YES;
15391540
GCC_WARN_UNUSED_VARIABLE = YES;
1540-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1541+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
15411542
MTL_ENABLE_DEBUG_INFO = NO;
15421543
SDKROOT = iphoneos;
15431544
VALIDATE_PRODUCT = YES;

sample61/ios/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '9.0'
1+
platform :ios, '10.3'
22
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
33

44
target 'sample61' do

sample61/ios/sample61.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@
667667
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
668668
GCC_WARN_UNUSED_FUNCTION = YES;
669669
GCC_WARN_UNUSED_VARIABLE = YES;
670-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
670+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
671671
MTL_ENABLE_DEBUG_INFO = YES;
672672
ONLY_ACTIVE_ARCH = YES;
673673
SDKROOT = iphoneos;
@@ -713,7 +713,7 @@
713713
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
714714
GCC_WARN_UNUSED_FUNCTION = YES;
715715
GCC_WARN_UNUSED_VARIABLE = YES;
716-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
716+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
717717
MTL_ENABLE_DEBUG_INFO = NO;
718718
SDKROOT = iphoneos;
719719
VALIDATE_PRODUCT = YES;

0 commit comments

Comments
 (0)