Skip to content

Commit 0b23037

Browse files
chore: remove properties override from iOS
1 parent 8df6508 commit 0b23037

File tree

2 files changed

+75
-89
lines changed

2 files changed

+75
-89
lines changed

examples/default/ios/InstabugExample.xcodeproj/project.pbxproj

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -331,14 +331,10 @@
331331
inputFileListPaths = (
332332
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample-InstabugTests/Pods-InstabugExample-InstabugTests-resources-${CONFIGURATION}-input-files.xcfilelist",
333333
);
334-
inputPaths = (
335-
);
336334
name = "[CP] Copy Pods Resources";
337335
outputFileListPaths = (
338336
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample-InstabugTests/Pods-InstabugExample-InstabugTests-resources-${CONFIGURATION}-output-files.xcfilelist",
339337
);
340-
outputPaths = (
341-
);
342338
runOnlyForDeploymentPostprocessing = 0;
343339
shellPath = /bin/sh;
344340
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-InstabugExample-InstabugTests/Pods-InstabugExample-InstabugTests-resources.sh\"\n";
@@ -396,14 +392,10 @@
396392
inputFileListPaths = (
397393
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample/Pods-InstabugExample-resources-${CONFIGURATION}-input-files.xcfilelist",
398394
);
399-
inputPaths = (
400-
);
401395
name = "[CP] Copy Pods Resources";
402396
outputFileListPaths = (
403397
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample/Pods-InstabugExample-resources-${CONFIGURATION}-output-files.xcfilelist",
404398
);
405-
outputPaths = (
406-
);
407399
runOnlyForDeploymentPostprocessing = 0;
408400
shellPath = /bin/sh;
409401
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-InstabugExample/Pods-InstabugExample-resources.sh\"\n";
@@ -417,14 +409,10 @@
417409
inputFileListPaths = (
418410
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample/Pods-InstabugExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
419411
);
420-
inputPaths = (
421-
);
422412
name = "[CP] Embed Pods Frameworks";
423413
outputFileListPaths = (
424414
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample/Pods-InstabugExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
425415
);
426-
outputPaths = (
427-
);
428416
runOnlyForDeploymentPostprocessing = 0;
429417
shellPath = /bin/sh;
430418
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-InstabugExample/Pods-InstabugExample-frameworks.sh\"\n";
@@ -435,11 +423,7 @@
435423
buildActionMask = 2147483647;
436424
files = (
437425
);
438-
inputPaths = (
439-
);
440426
name = "[CP-User] [instabug-reactnative] Upload Sourcemap";
441-
outputPaths = (
442-
);
443427
runOnlyForDeploymentPostprocessing = 0;
444428
shellPath = /bin/sh;
445429
shellScript = "#!/bin/sh\n\nmain() {\n # Read environment variables from ios/.xcode.env if it exists\n env_path=\"$PODS_ROOT/../.xcode.env\"\n if [ -f \"$env_path\" ]; then\n source \"$env_path\"\n fi\n\n # Read environment variables from ios/.xcode.env.local if it exists\n local_env_path=\"${ENV_PATH}.local\"\n if [ -f \"$local_env_path\" ]; then\n source \"$local_env_path\"\n fi\n\n if [[ \"$INSTABUG_SOURCEMAPS_UPLOAD_DISABLE\" = true ]]; then\n echo \"[Info] \\`INSTABUG_SOURCEMAPS_UPLOAD_DISABLE\\` was set to true, skipping sourcemaps upload...\"\n exit 0\n fi\n\n if [[ \"$CONFIGURATION\" = \"Debug\" ]]; then\n echo \"[Info] Building in debug mode, skipping sourcemaps upload...\"\n exit 0\n fi\n\n if [[ -z \"$INFOPLIST_FILE\" ]] || [[ -z \"$PROJECT_DIR\" ]]; then\n echo \"[Error] Instabug sourcemaps script must be invoked by Xcode\"\n exit 0\n fi\n\n local source_map_file=$(generate_sourcemaps | tail -n 1)\n\n local js_project_dir=\"$PROJECT_DIR/..\"\n local instabug_dir=$(dirname $(node -p \"require.resolve('instabug-reactnative/package.json')\"))\n local inferred_token=$(cd $js_project_dir && source $instabug_dir/scripts/find-token.sh)\n local app_token=$(resolve_var \"App Token\" \"INSTABUG_APP_TOKEN\" \"$inferred_token\" | tail -n 1)\n\n local inferred_name=$(/usr/libexec/PlistBuddy -c 'print CFBundleShortVersionString' \"$PROJECT_DIR/$INFOPLIST_FILE\")\n local version_name=$(resolve_var \"Version Name\" \"INSTABUG_APP_VERSION_NAME\" \"$inferred_name\" | tail -n 1)\n\n local inferred_code=$(/usr/libexec/PlistBuddy -c 'print CFBundleVersion' \"$PROJECT_DIR/$INFOPLIST_FILE\")\n local version_code=$(resolve_var \"Version Code\" \"INSTABUG_APP_VERSION_CODE\" \"$inferred_code\" | tail -n 1)\n\n node $instabug_dir/bin/index.js upload-sourcemaps \\\n --platform ios \\\n --file $source_map_file \\\n --token $app_token \\\n --name $version_name \\\n --code $version_code\n}\n\ngenerate_sourcemaps() {\n local react_native_dir=$(dirname $(node -p \"require.resolve('react-native/package.json')\"))\n\n # Fixes an issue with react-native prior to v0.67.0\n # For more info: https://github.com/facebook/react-native/issues/32168\n export RN_DIR=$react_native_dir\n\n # Used withing `react-native-xcode.sh` to generate sourcemap file\n export SOURCEMAP_FILE=\"$(pwd)/main.jsbundle.map\";\n\n source \"$react_native_dir/scripts/react-native-xcode.sh\"\n\n if [[ ! -f \"$SOURCEMAP_FILE\" ]]; then\n echo \"[Error] Unable to find source map file at: $SOURCEMAP_FILE\"\n exit 0\n fi\n\n echo $SOURCEMAP_FILE\n}\n\nresolve_var() {\n local name=$1\n local env_key=$2\n local default_value=$3\n\n local env_value=\"${!env_key}\"\n\n if [[ -n \"$env_value\" ]] && [[ -n \"$default_value\" ]] && [[ \"$env_value\" != default_value ]]; then\n echo \"[Warning] Environment variable \\`$env_key\\` might have incorrect value, make sure this was intentional:\"\n echo \" Environment Value: $env_value\"\n echo \" Default Value: $default_value\"\n fi\n\n local value=\"${env_value:-$default_value}\"\n\n if [[ -z \"$value\" ]]; then\n echo \"[Error] Unable to find $name! Set the environment variable \\`$env_key\\` and try again.\"\n exit 0\n fi\n\n echo $value\n}\n\nmain \"$@\"; exit\n";
@@ -452,14 +436,10 @@
452436
inputFileListPaths = (
453437
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample-InstabugTests/Pods-InstabugExample-InstabugTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
454438
);
455-
inputPaths = (
456-
);
457439
name = "[CP] Embed Pods Frameworks";
458440
outputFileListPaths = (
459441
"${PODS_ROOT}/Target Support Files/Pods-InstabugExample-InstabugTests/Pods-InstabugExample-InstabugTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
460442
);
461-
outputPaths = (
462-
);
463443
runOnlyForDeploymentPostprocessing = 0;
464444
shellPath = /bin/sh;
465445
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-InstabugExample-InstabugTests/Pods-InstabugExample-InstabugTests-frameworks.sh\"\n";
@@ -700,7 +680,10 @@
700680
"-DFOLLY_MOBILE=1",
701681
"-DFOLLY_USE_LIBCPP=1",
702682
);
703-
OTHER_LDFLAGS = "$(inherited) ";
683+
OTHER_LDFLAGS = (
684+
"$(inherited)",
685+
" ",
686+
);
704687
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
705688
SDKROOT = iphoneos;
706689
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
@@ -772,7 +755,10 @@
772755
"-DFOLLY_MOBILE=1",
773756
"-DFOLLY_USE_LIBCPP=1",
774757
);
775-
OTHER_LDFLAGS = "$(inherited) ";
758+
OTHER_LDFLAGS = (
759+
"$(inherited)",
760+
" ",
761+
);
776762
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
777763
SDKROOT = iphoneos;
778764
USE_HERMES = true;

examples/default/ios/Podfile.lock

Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PODS:
3131
- hermes-engine (0.75.4):
3232
- hermes-engine/Pre-built (= 0.75.4)
3333
- hermes-engine/Pre-built (0.75.4)
34-
- Instabug (15.1.24)
34+
- Instabug (15.1.26)
3535
- instabug-reactnative-ndk (0.1.0):
3636
- DoubleConversion
3737
- glog
@@ -1626,7 +1626,7 @@ PODS:
16261626
- ReactCommon/turbomodule/core
16271627
- Yoga
16281628
- RNInstabug (15.0.1):
1629-
- Instabug (= 15.1.24)
1629+
- Instabug (= 15.1.26)
16301630
- React-Core
16311631
- RNReanimated (3.16.1):
16321632
- DoubleConversion
@@ -1770,7 +1770,7 @@ DEPENDENCIES:
17701770
- fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
17711771
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
17721772
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1773-
- Instabug (from `https://ios-releases.instabug.com/custom/faeture-screen_rendering-release/15.1.24/Instabug.podspec`)
1773+
- Instabug (from `https://ios-releases.instabug.com/custom/faeture-screen_rendering-release/15.1.26/Instabug.podspec`)
17741774
- instabug-reactnative-ndk (from `../node_modules/instabug-reactnative-ndk`)
17751775
- OCMock
17761776
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
@@ -1869,7 +1869,7 @@ EXTERNAL SOURCES:
18691869
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
18701870
:tag: hermes-2024-08-15-RNv0.75.1-4b3bf912cc0f705b51b71ce1a5b8bd79b93a451b
18711871
Instabug:
1872-
:podspec: https://ios-releases.instabug.com/custom/faeture-screen_rendering-release/15.1.24/Instabug.podspec
1872+
:podspec: https://ios-releases.instabug.com/custom/faeture-screen_rendering-release/15.1.26/Instabug.podspec
18731873
instabug-reactnative-ndk:
18741874
:path: "../node_modules/instabug-reactnative-ndk"
18751875
RCT-Folly:
@@ -2017,89 +2017,89 @@ EXTERNAL SOURCES:
20172017

20182018
SPEC CHECKSUMS:
20192019
boost: 4cb898d0bf20404aab1850c656dcea009429d6c1
2020-
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
2020+
DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
20212021
FBLazyVector: 430e10366de01d1e3d57374500b1b150fe482e6d
20222022
fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
2023-
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
2023+
glog: 69ef571f3de08433d766d614c73a9838a06bf7eb
20242024
Google-Maps-iOS-Utils: f77eab4c4326d7e6a277f8e23a0232402731913a
20252025
GoogleMaps: 032f676450ba0779bd8ce16840690915f84e57ac
20262026
hermes-engine: ea92f60f37dba025e293cbe4b4a548fd26b610a0
2027-
Instabug: 81ff406348f7a9784ad2c681c94279a0ad3fcab7
2028-
instabug-reactnative-ndk: e6f3fd45d6426aa7d37f479f153b5c2bdc1f5eb9
2027+
Instabug: c47bd604b5212496da79b19b368eb5de73833d69
2028+
instabug-reactnative-ndk: d765ac289d56e8896398d02760d9abf2562fc641
20292029
OCMock: 589f2c84dacb1f5aaf6e4cec1f292551fe748e74
20302030
RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740
20312031
RCTDeprecation: 726d24248aeab6d7180dac71a936bbca6a994ed1
20322032
RCTRequired: a94e7febda6db0345d207e854323c37e3a31d93b
20332033
RCTTypeSafety: 28e24a6e44f5cbf912c66dde6ab7e07d1059a205
20342034
React: c2830fa483b0334bda284e46a8579ebbe0c5447e
20352035
React-callinvoker: 4aecde929540c26b841a4493f70ebf6016691eb8
2036-
React-Core: 32a581847d74ce9b5f51d9d11a4e4d132ad61553
2037-
React-CoreModules: f53e0674e1747fa41c83bc970e82add97b14ad87
2038-
React-cxxreact: 86f3b1692081fd954a0cb27cc90d14674645b64b
2036+
React-Core: 9c059899f00d46b5cec3ed79251f77d9c469553d
2037+
React-CoreModules: 9fac2d31803c0ed03e4ddaa17f1481714f8633a5
2038+
React-cxxreact: a979810a3ca4045ceb09407a17563046a7f71494
20392039
React-debug: 3d21f69d8def0656f8b8ec25c0f05954f4d862c5
2040-
React-defaultsnativemodule: 2ed121c5a1edeab09cff382b8d9b538260f07848
2041-
React-domnativemodule: 4393dd5dd7e13dbe42e69ebc791064a616990f91
2042-
React-Fabric: cbf38ceefb1ac6236897abdb538130228e126695
2043-
React-FabricComponents: dd4b01c4a60920d8dc15f3b5594c6fe9e7648a38
2044-
React-FabricImage: 8b13aedfbd20f349b9b3314baf993c71c02995d9
2040+
React-defaultsnativemodule: 2fa2bdb7bd03ff9764facc04aa8520ebf14febae
2041+
React-domnativemodule: 986e6fe7569e1383dce452a7b013b6c843a752df
2042+
React-Fabric: 3bc7be9e3a6b7581fc828dc2aa041e107fc8ffb8
2043+
React-FabricComponents: 668e0cb02344c2942e4c8921a643648faa6dc364
2044+
React-FabricImage: 3f44dd25a2b020ed5215d4438a1bb1f3461cd4f1
20452045
React-featureflags: ee1abd6f71555604a36cda6476e3c502ca9a48e5
2046-
React-featureflagsnativemodule: 87b58caf3cd8eca1e53179453789def019af2a65
2047-
React-graphics: f5c4cf3abc5aa083e28fe7a866bd95fb3bbbc1e0
2048-
React-hermes: cad69ee9a53870cc38e5386889aa7ea81c75b6a1
2049-
React-idlecallbacksnativemodule: 445390be0f533797ace18c419eb57110dbfe90d6
2050-
React-ImageManager: cb78d7a24f45f8f9a5a1640b52fce4c9f637f98d
2051-
React-jserrorhandler: dfe9b96e99a93d4f4858bad66d5bc4813a87a21a
2052-
React-jsi: bc1f6073e203fb540edd6d26f926ad041809b443
2053-
React-jsiexecutor: 1e8fc70dd9614c3e9d5c3c876b2ea3cd1d931ee4
2054-
React-jsinspector: 7544a20e9beac390f1b65d9f0040d97cd55dc198
2055-
React-jsitracing: cac972ccc097db399df8044e49add8e5b25cb34a
2056-
React-logger: 80d87daf2f98bf95ab668b79062c1e0c3f0c2f8a
2057-
React-Mapbuffer: acffb35a53a5f474ede09f082ac609b41aafab2e
2058-
React-microtasksnativemodule: 71ca9282bce93b319218d75362c0d646b376eb43
2059-
react-native-background-timer: 4638ae3bee00320753647900b21260b10587b6f7
2060-
react-native-config: ea75335a7cca1d3326de1da384227e580a7c082e
2061-
react-native-google-maps: 98754480fbb4fd5ccd016d0f75a2168a6c84ebc5
2062-
react-native-maps: 6f92b1fd37f9421b171c977a42785270703875dc
2063-
react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
2064-
react-native-safe-area-context: 8b8404e70b0cbf2a56428a17017c14c1dcc16448
2065-
react-native-slider: fc7f35c082abec47e341dfe43657a1c26f38db2f
2066-
react-native-webview: 042b9dfd509d23e7ebc07da06c38a8bcc4679d46
2046+
React-featureflagsnativemodule: 7ccc0cd666c2a6257401dceb7920818ac2b42803
2047+
React-graphics: d7dd9c8d75cad5af19e19911fa370f78f2febd96
2048+
React-hermes: 2069b08e965e48b7f8aa2c0ca0a2f383349ed55d
2049+
React-idlecallbacksnativemodule: e211b2099b6dced97959cb58257bab2b2de4d7ef
2050+
React-ImageManager: ab7a7d17dd0ff1ef1d4e1e88197d1119da9957ce
2051+
React-jserrorhandler: d9e867bb83b868472f3f7601883f0403b3e3942d
2052+
React-jsi: d68f1d516e5120a510afe356647a6a1e1f98f2db
2053+
React-jsiexecutor: 6366a08a0fc01c9b65736f8deacd47c4a397912a
2054+
React-jsinspector: 0ac947411f0c73b34908800cc7a6a31d8f93e1a8
2055+
React-jsitracing: 0e8c0aadb1fcec6b1e4f2a66ee3b0da80f0f8615
2056+
React-logger: d79b704bf215af194f5213a6b7deec50ba8e6a9b
2057+
React-Mapbuffer: b982d5bba94a8bc073bda48f0d27c9b28417fae3
2058+
React-microtasksnativemodule: 2b73e68f0462f3175f98782db08896f8501afd20
2059+
react-native-background-timer: 17ea5e06803401a379ebf1f20505b793ac44d0fe
2060+
react-native-config: 8f7283449bbb048902f4e764affbbf24504454af
2061+
react-native-google-maps: 1bcc1f9f13f798fcf230db7fe476f3566d0bc0a3
2062+
react-native-maps: 72a8a903f8a1b53e2c777ba79102078ab502e0bf
2063+
react-native-netinfo: f0a9899081c185db1de5bb2fdc1c88c202a059ac
2064+
react-native-safe-area-context: 142fade490cbebbe428640b8cbdb09daf17e8191
2065+
react-native-slider: 4a0f3386a38fc3d2d955efc515aef7096f7d1ee4
2066+
react-native-webview: c0b91a4598bd54e9fbc70353aebf1e9bab2e5bb9
20672067
React-nativeconfig: 8c83d992b9cc7d75b5abe262069eaeea4349f794
2068-
React-NativeModulesApple: 97f606f09fd9840b3868333984d6a0e7bcc425b5
2068+
React-NativeModulesApple: 9f7920224a3b0c7d04d77990067ded14cee3c614
20692069
React-perflogger: 59e1a3182dca2cee7b9f1f7aab204018d46d1914
2070-
React-performancetimeline: 3e3f5c5576fe1cc2dd5fcfb1ae2046d5dceda3d7
2070+
React-performancetimeline: a9d05533ff834c6aa1f532e05e571f3fd2e3c1ed
20712071
React-RCTActionSheet: d80e68d3baa163e4012a47c1f42ddd8bcd9672cc
2072-
React-RCTAnimation: 051f0781709c5ed80ba8aa2b421dfb1d72a03162
2073-
React-RCTAppDelegate: 106d225d076988b06aa4834e68d1ab754f40cacf
2074-
React-RCTBlob: 895eaf8bca2e76ee1c95b479235c6ccebe586fc6
2075-
React-RCTFabric: 8d01df202ee9e933f9b5dd44b72ec89a7ac6ee01
2076-
React-RCTImage: b73149c0cd54b641dba2d6250aaf168fee784d9f
2077-
React-RCTLinking: 23e519712285427e50372fbc6e0265d422abf462
2078-
React-RCTNetwork: a5d06d122588031989115f293654b13353753630
2079-
React-RCTSettings: 87d03b5d94e6eadd1e8c1d16a62f790751aafb55
2080-
React-RCTText: 75e9dd39684f4bcd1836134ac2348efaca7437b3
2081-
React-RCTVibration: 033c161fe875e6fa096d0d9733c2e2501682e3d4
2072+
React-RCTAnimation: bde981f6bd7f8493696564da9b3bd05721d3b3cc
2073+
React-RCTAppDelegate: 0176615c51476c88212bf3edbafb840d39ea7631
2074+
React-RCTBlob: 520a0382bf8e89b9153d60e3c6293e51615834e9
2075+
React-RCTFabric: c9da097b19b30017a99498b8c66a69c72f3ce689
2076+
React-RCTImage: 90448d2882464af6015ed57c98f463f8748be465
2077+
React-RCTLinking: 1bd95d0a704c271d21d758e0f0388cced768d77d
2078+
React-RCTNetwork: 218af6e63eb9b47935cc5a775b7a1396cf10ff91
2079+
React-RCTSettings: e10b8e42b0fce8a70fbf169de32a2ae03243ef6b
2080+
React-RCTText: e7bf9f4997a1a0b45c052d4ad9a0fe653061cf29
2081+
React-RCTVibration: 5b70b7f11e48d1c57e0d4832c2097478adbabe93
20822082
React-rendererconsistency: f620c6e003e3c4593e6349d8242b8aeb3d4633f0
2083-
React-rendererdebug: 5be7b834677b2a7a263f4d2545f0d4966cafad82
2083+
React-rendererdebug: e697680f4dd117becc5daf9ea9800067abcee91c
20842084
React-rncore: c22bd84cc2f38947f0414fab6646db22ff4f80cd
2085-
React-RuntimeApple: 71160e6c02efa07d198b84ef5c3a52a7d9d0399d
2086-
React-RuntimeCore: f88f79ec995c12af56a265d7505c7630733d9d82
2085+
React-RuntimeApple: de0976836b90b484305638616898cbc665c67c13
2086+
React-RuntimeCore: 3c4a5aa63d9e7a3c17b7fb23f32a72a8bcfccf57
20872087
React-runtimeexecutor: ea90d8e3a9e0f4326939858dafc6ab17c031a5d3
2088-
React-RuntimeHermes: 49f86328914021f50fd5a5b9756685f5f6d8b4da
2089-
React-runtimescheduler: fed70991b942c6df752a59a22081e45fc811b11c
2090-
React-utils: 02526ea15628a768b8db9517b6017a1785c734d2
2091-
ReactCodegen: 8b5341ecb61898b8bd40a73ebc443c6bf2d14423
2092-
ReactCommon: 36d48f542b4010786d6b2bcee615fe5f906b7105
2093-
RNCClipboard: 7c3e3b5f71d84ef61690ad377b6c50cf27864ff5
2094-
RNGestureHandler: 27a63f2218affdf1a426d56682f9b174904838b3
2095-
RNInstabug: 1eed7d7d7bd3557bd62789d531753fcb608ebb28
2096-
RNReanimated: 8bf536bd3964d10a9bacabf179897e79f6bea34f
2097-
RNScreens: 35bb8e81aeccf111baa0ea01a54231390dbbcfd9
2098-
RNSVG: 8542aa11770b27563714bbd8494a8436385fc85f
2099-
RNVectorIcons: 182892e7d1a2f27b52d3c627eca5d2665a22ee28
2088+
React-RuntimeHermes: c6b0afdf1f493621214eeb6517fb859ce7b21b81
2089+
React-runtimescheduler: 84f0d876d254bce6917a277b3930eb9bc29df6c7
2090+
React-utils: cbe8b8b3d7b2ac282e018e46f0e7b25cdc87c5a0
2091+
ReactCodegen: 4bcb34e6b5ebf6eef5cee34f55aa39991ea1c1f1
2092+
ReactCommon: 6a952e50c2a4b694731d7682aaa6c79bc156e4ad
2093+
RNCClipboard: 2821ac938ef46f736a8de0c8814845dde2dcbdfb
2094+
RNGestureHandler: 511250b190a284388f9dd0d2e56c1df76f14cfb8
2095+
RNInstabug: 35bf420d77731598fae13c33ceecf0343fd8dd99
2096+
RNReanimated: f42a5044d121d68e91680caacb0293f4274228eb
2097+
RNScreens: c7ceced6a8384cb9be5e7a5e88e9e714401fd958
2098+
RNSVG: 8b1a777d54096b8c2a0fd38fc9d5a454332bbb4d
2099+
RNVectorIcons: 6382277afab3c54658e9d555ee0faa7a37827136
21002100
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
2101-
Yoga: 055f92ad73f8c8600a93f0e25ac0b2344c3b07e6
2101+
Yoga: aa3df615739504eebb91925fc9c58b4922ea9a08
21022102

2103-
PODFILE CHECKSUM: 29f363f85c01e13c559723cad266922d16c81bc5
2103+
PODFILE CHECKSUM: 4e2ae668f4fb59c72dfd359d3d9c86ec6d4967e5
21042104

2105-
COCOAPODS: 1.16.2
2105+
COCOAPODS: 1.15.2

0 commit comments

Comments
 (0)