Skip to content

Commit

Permalink
CORE-2212 correct pod lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-branch committed Jul 27, 2021
1 parent e818396 commit 08cccfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Branch-SDK/Branch.m
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ - (BOOL)continueUserActivity:(NSUserActivity *)userActivity {
- (BOOL)continueUserActivity:(NSUserActivity *)userActivity sceneIdentifier:(NSString *)sceneIdentifier {
BNCLogDebugSDK(@"continueUserActivity:");

if (@available(iOS 11.0, *)) {
if (@available(iOS 11.0, tvOS 11.0, *)) {
if (userActivity.referrerURL) {
self.preferenceHelper.initialReferrer = userActivity.referrerURL.absoluteString;
}
Expand Down

1 comment on commit 08cccfa

@npenumal
Copy link

@npenumal npenumal commented on 08cccfa Aug 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Current version in our codebase is "react-native-branch": "5.0.0". What is the latest React Native version and how to update this?
  2. Since this is common for both iOS and Android, does the update have any impact on Android?
  3. Can we expect any updates for Android 12?

Please sign in to comment.