Skip to content

Commit

Permalink
chore(ios): commit current Podfile.lock, set deploy target correctly
Browse files Browse the repository at this point in the history
Podfile specifies deploy target 11, but Xcode project was set to 10,
resulting in lots of noise during iOS build
  • Loading branch information
mikehardy committed Mar 8, 2022
1 parent 0f6f854 commit c3022f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions tests_react_native/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -358,10 +358,10 @@ PODS:
- Firebase/Messaging (= 8.8.0)
- React-Core
- RNFBApp
- RNNotifee (4.1.0):
- RNNotifee (5.0.1):
- NotifeeCore
- React-Core
- RNNotifeeCore (4.1.0):
- RNNotifeeCore (5.0.1):
- NotifeeCore
- Yoga (1.14.0)

Expand Down Expand Up @@ -546,8 +546,8 @@ SPEC CHECKSUMS:
ReactCommon: fda8de1535cec34971adef653f9afd954142eb7c
RNFBApp: 729c0666395b1953198dc4a1ec6deb8fbe1c302e
RNFBMessaging: 8415ec196e5c1196caa26ec0742cdb48ed4d0f97
RNNotifee: db0c45ad1eab8bf41e846b0e2121be2768f796f0
RNNotifeeCore: 79bd7f3bdaea136f685698f4069dcad0c57c3f31
RNNotifee: de2e3010396e318b255cf5af45d38e5d0be22551
RNNotifeeCore: 0b0cf012bae58dbe541872ba938e535d0fc45c3b
Yoga: 63f25ad38b6f7597fa5dfee27088b29a01e83447

PODFILE CHECKSUM: 5a8c08f65af9bf9f8543478056186aaf3b8e42ef
Expand Down
8 changes: 4 additions & 4 deletions tests_react_native/ios/testing.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@
"$(SRCROOT)/../../node_modules/react-native/React/**",
);
INFOPLIST_FILE = testing/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -602,7 +602,7 @@
"$(SRCROOT)/../../node_modules/react-native/React/**",
);
INFOPLIST_FILE = testing/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -737,7 +737,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "";
Expand Down Expand Up @@ -779,7 +779,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = "";
PRODUCT_NAME = Notifee;
Expand Down

0 comments on commit c3022f9

Please sign in to comment.