Skip to content

Commit 7ac31ce

Browse files
committed
chore: fix example app ci, upgrade rn to 0.65.1
1 parent caef2a3 commit 7ac31ce

File tree

610 files changed

+8332
-53609
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

610 files changed

+8332
-53609
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ android.iml
3939
# Cocoapods
4040
#
4141
example/ios/Pods
42+
example/ios/Pods/**
4243

4344
# node.js
4445
#

example/ios/AnalyticsReactNativeExample.xcodeproj/project.pbxproj

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@
126126
13B07F8E1A680F5B00A75B9A /* Resources */,
127127
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
128128
7A2FB6969CDA2F7083356BAB /* [CP] Copy Pods Resources */,
129-
F48CA55E94E823860E796200 /* [CP-User] [RNFB] Core Configuration */,
130129
);
131130
buildRules = (
132131
);
@@ -238,19 +237,6 @@
238237
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
239238
showEnvVarsInLog = 0;
240239
};
241-
F48CA55E94E823860E796200 /* [CP-User] [RNFB] Core Configuration */ = {
242-
isa = PBXShellScriptBuildPhase;
243-
buildActionMask = 2147483647;
244-
files = (
245-
);
246-
inputPaths = (
247-
"$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)",
248-
);
249-
name = "[CP-User] [RNFB] Core Configuration";
250-
runOnlyForDeploymentPostprocessing = 0;
251-
shellPath = /bin/sh;
252-
shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\nset -e\n\n_MAX_LOOKUPS=2;\n_SEARCH_RESULT=''\n_RN_ROOT_EXISTS=''\n_CURRENT_LOOKUPS=1\n_JSON_ROOT=\"'react-native'\"\n_JSON_FILE_NAME='firebase.json'\n_JSON_OUTPUT_BASE64='e30=' # { }\n_CURRENT_SEARCH_DIR=${PROJECT_DIR}\n_PLIST_BUDDY=/usr/libexec/PlistBuddy\n_TARGET_PLIST=\"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\"\n_DSYM_PLIST=\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"\n\n# plist arrays\n_PLIST_ENTRY_KEYS=()\n_PLIST_ENTRY_TYPES=()\n_PLIST_ENTRY_VALUES=()\n\nfunction setPlistValue {\n echo \"info: setting plist entry '$1' of type '$2' in file '$4'\"\n ${_PLIST_BUDDY} -c \"Add :$1 $2 '$3'\" $4 || echo \"info: '$1' already exists\"\n}\n\nfunction getFirebaseJsonKeyValue () {\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$1'); puts output[$_JSON_ROOT]['$2']\"\n else\n echo \"\"\n fi;\n}\n\nfunction jsonBoolToYesNo () {\n if [[ $1 == \"false\" ]]; then\n echo \"NO\"\n elif [[ $1 == \"true\" ]]; then\n echo \"YES\"\n else echo \"NO\"\n fi\n}\n\necho \"info: -> RNFB build script started\"\necho \"info: 1) Locating ${_JSON_FILE_NAME} file:\"\n\nif [[ -z ${_CURRENT_SEARCH_DIR} ]]; then\n _CURRENT_SEARCH_DIR=$(pwd)\nfi;\n\nwhile true; do\n _CURRENT_SEARCH_DIR=$(dirname \"$_CURRENT_SEARCH_DIR\")\n if [[ \"$_CURRENT_SEARCH_DIR\" == \"/\" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;\n echo \"info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file.\"\n _SEARCH_RESULT=$(find \"$_CURRENT_SEARCH_DIR\" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | head -n 1)\n if [[ ${_SEARCH_RESULT} ]]; then\n echo \"info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT\"\n break;\n fi;\n _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))\ndone\n\nif [[ ${_SEARCH_RESULT} ]]; then\n _JSON_OUTPUT_RAW=$(cat \"${_SEARCH_RESULT}\")\n _RN_ROOT_EXISTS=$(ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]\" || echo '')\n\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n _JSON_OUTPUT_BASE64=$(python -c 'import json,sys,base64;print(base64.b64encode(json.dumps(json.loads(open('\"'${_SEARCH_RESULT}'\"').read())['${_JSON_ROOT}'])))' || echo \"e30=\")\n fi\n\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n\n # config.app_data_collection_default_enabled\n _APP_DATA_COLLECTION_ENABLED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"app_data_collection_default_enabled\")\n if [[ $_APP_DATA_COLLECTION_ENABLED ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseDataCollectionDefaultEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_APP_DATA_COLLECTION_ENABLED\")\")\n fi\n\n # config.analytics_auto_collection_enabled\n _ANALYTICS_AUTO_COLLECTION=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"analytics_auto_collection_enabled\")\n if [[ $_ANALYTICS_AUTO_COLLECTION ]]; then\n _PLIST_ENTRY_KEYS+=(\"FIREBASE_ANALYTICS_COLLECTION_ENABLED\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_ANALYTICS_AUTO_COLLECTION\")\")\n fi\n\n # config.analytics_collection_deactivated\n _ANALYTICS_DEACTIVATED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"analytics_collection_deactivated\")\n if [[ $_ANALYTICS_DEACTIVATED ]]; then\n _PLIST_ENTRY_KEYS+=(\"FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_ANALYTICS_DEACTIVATED\")\")\n fi\n\n # config.analytics_idfv_collection_enabled\n _ANALYTICS_IDFV_COLLECTION=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"analytics_idfv_collection_enabled\")\n if [[ $_ANALYTICS_IDFV_COLLECTION ]]; then\n _PLIST_ENTRY_KEYS+=(\"GOOGLE_ANALYTICS_IDFV_COLLECTION_ENABLED\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_ANALYTICS_IDFV_COLLECTION\")\")\n fi\n\n # config.analytics_default_allow_ad_personalization_signals\n _ANALYTICS_PERSONALIZATION=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"analytics_default_allow_ad_personalization_signals\")\n if [[ $_ANALYTICS_PERSONALIZATION ]]; then\n _PLIST_ENTRY_KEYS+=(\"GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_PERSONALIZATION_SIGNALS\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_ANALYTICS_PERSONALIZATION\")\")\n fi\n\n # config.perf_auto_collection_enabled\n _PERF_AUTO_COLLECTION=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"perf_auto_collection_enabled\")\n if [[ $_PERF_AUTO_COLLECTION ]]; then\n _PLIST_ENTRY_KEYS+=(\"firebase_performance_collection_enabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_PERF_AUTO_COLLECTION\")\")\n fi\n\n # config.perf_collection_deactivated\n _PERF_DEACTIVATED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"perf_collection_deactivated\")\n if [[ $_PERF_DEACTIVATED ]]; then\n _PLIST_ENTRY_KEYS+=(\"firebase_performance_collection_deactivated\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_PERF_DEACTIVATED\")\")\n fi\n\n # config.messaging_auto_init_enabled\n _MESSAGING_AUTO_INIT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"messaging_auto_init_enabled\")\n if [[ $_MESSAGING_AUTO_INIT ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseMessagingAutoInitEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_MESSAGING_AUTO_INIT\")\")\n fi\n\n # config.in_app_messaging_auto_colllection_enabled\n _FIAM_AUTO_INIT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"in_app_messaging_auto_collection_enabled\")\n if [[ $_FIAM_AUTO_INIT ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseInAppMessagingAutomaticDataCollectionEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_FIAM_AUTO_INIT\")\")\n fi\n\n # config.app_check_token_auto_refresh\n _APP_CHECK_TOKEN_AUTO_REFRESH=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"app_check_token_auto_refresh\")\n if [[ $_APP_CHECK_TOKEN_AUTO_REFRESH ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseAppCheckTokenAutoRefreshEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_APP_CHECK_TOKEN_AUTO_REFRESH\")\")\n fi\n\n # config.crashlytics_disable_auto_disabler - undocumented for now - mainly for debugging, document if becomes useful\n _CRASHLYTICS_AUTO_DISABLE_ENABLED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"crashlytics_disable_auto_disabler\")\n if [[ $_CRASHLYTICS_AUTO_DISABLE_ENABLED == \"true\" ]]; then\n echo \"Disabled Crashlytics auto disabler.\" # do nothing\n else\n _PLIST_ENTRY_KEYS+=(\"FirebaseCrashlyticsCollectionEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"NO\")\n fi\nelse\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n echo \"warning: A firebase.json file was not found, whilst this file is optional it is recommended to include it to configure firebase services in React Native Firebase.\"\nfi;\n\necho \"info: 2) Injecting Info.plist entries: \"\n\n# Log out the keys we're adding\nfor i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n echo \" -> $i) ${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\"\ndone\n\nfor plist in \"${_TARGET_PLIST}\" \"${_DSYM_PLIST}\" ; do\n if [[ -f \"${plist}\" ]]; then\n\n # paths with spaces break the call to setPlistValue. temporarily modify\n # the shell internal field separator variable (IFS), which normally\n # includes spaces, to consist only of line breaks\n oldifs=$IFS\n IFS=\"\n\"\n\n for i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n setPlistValue \"${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\" \"${plist}\"\n done\n\n # restore the original internal field separator value\n IFS=$oldifs\n else\n echo \"warning: A Info.plist build output file was not found (${plist})\"\n fi\ndone\n\necho \"info: <- RNFB build script finished\"\n";
253-
};
254240
FD10A7F022414F080027D42C /* Start Packager */ = {
255241
isa = PBXShellScriptBuildPhase;
256242
buildActionMask = 2147483647;

example/ios/AnalyticsReactNativeExample/AppDelegate.m

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#import <React/RCTBundleURLProvider.h>
1212
#import <React/RCTRootView.h>
1313
#import "RNBootSplash.h"
14-
#import <Firebase.h>
1514
@import AdSupport;
1615

1716
@implementation AppDelegate
@@ -32,10 +31,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
3231
[self.window makeKeyAndVisible];
3332
[RNBootSplash initWithStoryboard:@"LaunchScreen" rootView:rootView];
3433

35-
if ([FIRApp defaultApp] == nil) {
36-
[FIRApp configure];
37-
}
38-
3934
return YES;
4035
}
4136

example/ios/Podfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/nativ
33

44
platform :ios, '11.0'
55

6+
# post_install do |installer|
7+
# installer.pods_project.targets.each do |target|
8+
# target.build_configurations.each do |config|
9+
# config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
10+
# end
11+
# end
12+
# end
13+
614
target 'AnalyticsReactNativeExample' do
715
config = use_native_modules!
816

example/ios/Podfile.lock

Lines changed: 3 additions & 119 deletions
Original file line numberDiff line numberDiff line change
@@ -9,89 +9,8 @@ PODS:
99
- React-Core (= 0.65.1)
1010
- React-jsi (= 0.65.1)
1111
- ReactCommon/turbomodule/core (= 0.65.1)
12-
- Firebase/Analytics (8.6.0):
13-
- Firebase/Core
14-
- Firebase/Core (8.6.0):
15-
- Firebase/CoreOnly
16-
- FirebaseAnalytics (~> 8.6.0)
17-
- Firebase/CoreOnly (8.6.0):
18-
- FirebaseCore (= 8.6.0)
19-
- FirebaseAnalytics (8.6.0):
20-
- FirebaseAnalytics/AdIdSupport (= 8.6.0)
21-
- FirebaseCore (~> 8.0)
22-
- FirebaseInstallations (~> 8.0)
23-
- GoogleUtilities/AppDelegateSwizzler (~> 7.4)
24-
- GoogleUtilities/MethodSwizzler (~> 7.4)
25-
- GoogleUtilities/Network (~> 7.4)
26-
- "GoogleUtilities/NSData+zlib (~> 7.4)"
27-
- nanopb (~> 2.30908.0)
28-
- FirebaseAnalytics/AdIdSupport (8.6.0):
29-
- FirebaseCore (~> 8.0)
30-
- FirebaseInstallations (~> 8.0)
31-
- GoogleAppMeasurement (= 8.6.0)
32-
- GoogleUtilities/AppDelegateSwizzler (~> 7.4)
33-
- GoogleUtilities/MethodSwizzler (~> 7.4)
34-
- GoogleUtilities/Network (~> 7.4)
35-
- "GoogleUtilities/NSData+zlib (~> 7.4)"
36-
- nanopb (~> 2.30908.0)
37-
- FirebaseCore (8.6.0):
38-
- FirebaseCoreDiagnostics (~> 8.0)
39-
- GoogleUtilities/Environment (~> 7.4)
40-
- GoogleUtilities/Logger (~> 7.4)
41-
- FirebaseCoreDiagnostics (8.8.0):
42-
- GoogleDataTransport (~> 9.0)
43-
- GoogleUtilities/Environment (~> 7.4)
44-
- GoogleUtilities/Logger (~> 7.4)
45-
- nanopb (~> 2.30908.0)
46-
- FirebaseInstallations (8.8.0):
47-
- FirebaseCore (~> 8.0)
48-
- GoogleUtilities/Environment (~> 7.4)
49-
- GoogleUtilities/UserDefaults (~> 7.4)
50-
- PromisesObjC (< 3.0, >= 1.2)
5112
- fmt (6.2.1)
5213
- glog (0.3.5)
53-
- GoogleAppMeasurement (8.6.0):
54-
- GoogleAppMeasurement/AdIdSupport (= 8.6.0)
55-
- GoogleUtilities/AppDelegateSwizzler (~> 7.4)
56-
- GoogleUtilities/MethodSwizzler (~> 7.4)
57-
- GoogleUtilities/Network (~> 7.4)
58-
- "GoogleUtilities/NSData+zlib (~> 7.4)"
59-
- nanopb (~> 2.30908.0)
60-
- GoogleAppMeasurement/AdIdSupport (8.6.0):
61-
- GoogleUtilities/AppDelegateSwizzler (~> 7.4)
62-
- GoogleUtilities/MethodSwizzler (~> 7.4)
63-
- GoogleUtilities/Network (~> 7.4)
64-
- "GoogleUtilities/NSData+zlib (~> 7.4)"
65-
- nanopb (~> 2.30908.0)
66-
- GoogleDataTransport (9.1.0):
67-
- GoogleUtilities/Environment (~> 7.2)
68-
- nanopb (~> 2.30908.0)
69-
- PromisesObjC (< 3.0, >= 1.2)
70-
- GoogleUtilities/AppDelegateSwizzler (7.5.2):
71-
- GoogleUtilities/Environment
72-
- GoogleUtilities/Logger
73-
- GoogleUtilities/Network
74-
- GoogleUtilities/Environment (7.5.2):
75-
- PromisesObjC (< 3.0, >= 1.2)
76-
- GoogleUtilities/Logger (7.5.2):
77-
- GoogleUtilities/Environment
78-
- GoogleUtilities/MethodSwizzler (7.5.2):
79-
- GoogleUtilities/Logger
80-
- GoogleUtilities/Network (7.5.2):
81-
- GoogleUtilities/Logger
82-
- "GoogleUtilities/NSData+zlib"
83-
- GoogleUtilities/Reachability
84-
- "GoogleUtilities/NSData+zlib (7.5.2)"
85-
- GoogleUtilities/Reachability (7.5.2):
86-
- GoogleUtilities/Logger
87-
- GoogleUtilities/UserDefaults (7.5.2):
88-
- GoogleUtilities/Logger
89-
- nanopb (2.30908.0):
90-
- nanopb/decode (= 2.30908.0)
91-
- nanopb/encode (= 2.30908.0)
92-
- nanopb/decode (2.30908.0)
93-
- nanopb/encode (2.30908.0)
94-
- PromisesObjC (2.0.0)
9514
- RCT-Folly (2021.04.26.00):
9615
- boost-for-react-native
9716
- DoubleConversion
@@ -361,13 +280,6 @@ PODS:
361280
- React-Core
362281
- RNCMaskedView (0.1.11):
363282
- React
364-
- RNFBAnalytics (12.7.4):
365-
- Firebase/Analytics (= 8.6.0)
366-
- React-Core
367-
- RNFBApp
368-
- RNFBApp (12.7.4):
369-
- Firebase/CoreOnly (= 8.6.0)
370-
- React-Core
371283
- RNGestureHandler (1.10.3):
372284
- React-Core
373285
- segment-analytics-react-native (2.0.0-pilot.1):
@@ -411,8 +323,6 @@ DEPENDENCIES:
411323
- RNBootSplash (from `../node_modules/react-native-bootsplash`)
412324
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
413325
- "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
414-
- "RNFBAnalytics (from `../node_modules/@react-native-firebase/analytics`)"
415-
- "RNFBApp (from `../node_modules/@react-native-firebase/app`)"
416326
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
417327
- segment-analytics-react-native (from `../../packages/core`)
418328
- segment-analytics-react-native-plugin-idfa (from `../../packages/plugins/plugin-idfa`)
@@ -421,17 +331,7 @@ DEPENDENCIES:
421331
SPEC REPOS:
422332
trunk:
423333
- boost-for-react-native
424-
- Firebase
425-
- FirebaseAnalytics
426-
- FirebaseCore
427-
- FirebaseCoreDiagnostics
428-
- FirebaseInstallations
429334
- fmt
430-
- GoogleAppMeasurement
431-
- GoogleDataTransport
432-
- GoogleUtilities
433-
- nanopb
434-
- PromisesObjC
435335

436336
EXTERNAL SOURCES:
437337
DoubleConversion:
@@ -498,10 +398,6 @@ EXTERNAL SOURCES:
498398
:path: "../node_modules/@react-native-async-storage/async-storage"
499399
RNCMaskedView:
500400
:path: "../node_modules/@react-native-community/masked-view"
501-
RNFBAnalytics:
502-
:path: "../node_modules/@react-native-firebase/analytics"
503-
RNFBApp:
504-
:path: "../node_modules/@react-native-firebase/app"
505401
RNGestureHandler:
506402
:path: "../node_modules/react-native-gesture-handler"
507403
segment-analytics-react-native:
@@ -516,18 +412,8 @@ SPEC CHECKSUMS:
516412
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
517413
FBLazyVector: 33c82491102f20ecddb6c6a2c273696ace3191e0
518414
FBReactNativeSpec: df8f81d2a7541ee6755a047b398a5cb5a72acd0e
519-
Firebase: 21ac9f28b09a8bdfc005f34c984fca84e7e8786d
520-
FirebaseAnalytics: 8f32ae54ad42754f503354782575c4ddfc1425c3
521-
FirebaseCore: 620b677f70f5470a8e59cb77f3ddc666f6f09785
522-
FirebaseCoreDiagnostics: fe77f42da6329d6d83d21fd9d621a6b704413bfc
523-
FirebaseInstallations: 2563cb18a723ef9c6ef18318a49519b75dce613c
524415
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
525416
glog: 5337263514dd6f09803962437687240c5dc39aa4
526-
GoogleAppMeasurement: 2c0c6e2a7ab3fe730ade6379f732bdefb46f50b0
527-
GoogleDataTransport: 85fd18ff3019bb85d3f2c551d04c481dedf71fc9
528-
GoogleUtilities: 8de2a97a17e15b6b98e38e8770e2d129a57c0040
529-
nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96
530-
PromisesObjC: 68159ce6952d93e17b2dfe273b8c40907db5ba58
531417
RCT-Folly: 0dd9e1eb86348ecab5ba76f910b56f4b5fef3c46
532418
RCTRequired: 6cf071ab2adfd769014b3d94373744ee6e789530
533419
RCTTypeSafety: b829c59453478bb5b02487b8de3336386ab93ab1
@@ -556,13 +442,11 @@ SPEC CHECKSUMS:
556442
RNBootSplash: 4844706cbb56a3270556c9b94e59dedadccd47e4
557443
RNCAsyncStorage: 7102fe8985f889579a3ae148d957bbb3f308122b
558444
RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
559-
RNFBAnalytics: e3955c3037ab3b25380facb6d82cf56ad70c46c3
560-
RNFBApp: 150a5a9f4b4cbadd7be07b08d524bd5cfba9fc7b
561445
RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
562-
segment-analytics-react-native: 1419813b924557a6b2af89097d87a495b1455939
563-
segment-analytics-react-native-plugin-idfa: 401fa8d9eb9d236ee8772f4d4c8ccf1d71c3c67b
446+
segment-analytics-react-native: b2fdd858d2c385b634ed3d70d51aac2871f7b352
447+
segment-analytics-react-native-plugin-idfa: 686d0edac1e673ab8a07d3a5e882498a85ac0e74
564448
Yoga: aa0cb45287ebe1004c02a13f279c55a95f1572f4
565449

566-
PODFILE CHECKSUM: 2266329b4d4f2396e42d549bc7322ea3873dede6
450+
PODFILE CHECKSUM: 8d1eaee20538fc35ee39f816ae22cc6ddcc0ed37
567451

568452
COCOAPODS: 1.11.2

0 commit comments

Comments
 (0)